swiftmailer\Mailer $enableSwiftMailerLogging

$enableSwiftMailerLogging public property Whether to enable writing of the SwiftMailer internal logs using Yii log mechanism. If enabled yii\swiftmailer\Logger plugin will be attached to the $transport for this purpose. See also yii\swiftmailer\Logger. public boolean $enableSwiftMailerLogging = false

web\Request getBaseUrl()

getBaseUrl() public method Returns the relative URL for the application. This is similar to $scriptUrl except that it does not include the script file name, and the ending slashes are removed. See also setScriptUrl(). public string getBaseUrl ( )return string The relative URL for the application

rest\Serializer serializePagination()

serializePagination() protected method Serializes a pagination into an array. See also addPaginationHeaders(). protected array serializePagination ( $pagination )$pagination yii\data\Pagination return array The array representation of the pagination

bootstrap\Alert init()

init() public method Initializes the widget. public void init ( )

i18n\Formatter $numberFormatterTextOptions

$numberFormatterTextOptions public property A list of name value pairs that are passed to the intl Numberformatter::setTextAttribute() method of all the number formatter objects created by createNumberFormatter(). This property takes only effect if the PHP intl extension is installed. Please refer to the PHP manual for the possible options. For example to change the minus sign for negative numbers you can configure this property like the following: [ NumberFormatter::NEGATIVE_PREFIX =&g

redis\Connection $password

$password public property The password for establishing DB connection. Defaults to null meaning no AUTH command is send. See http://redis.io/commands/auth public string $password = null

redis\ActiveRecord find()

find() public static method Creates an \yii\redis\ActiveQueryInterface instance for query purpose. The returned \yii\redis\ActiveQueryInterface instance can be further customized by calling methods defined in \yii\redis\ActiveQueryInterface before one() or all() is called to return populated ActiveRecord instances. For example, // find the customer whose ID is 1 $customer = Customer::find()->where(['id' => 1])->one(); // find all active customers and order them by their age: $cust

sphinx\Schema loadColumnSchema()

loadColumnSchema() protected method Loads the column information into a yii\sphinx\ColumnSchema object. protected yii\sphinx\ColumnSchema loadColumnSchema ( $info )$info array Column information return yii\sphinx\ColumnSchema The column schema object

db\Connection $schemaMap

$schemaMap public property Mapping between PDO driver names and yii\db\Schema classes. The keys of the array are PDO driver names while the values the corresponding schema class name or configuration. Please refer to Yii::createObject() for details on how to specify a configuration. This property is mainly used by getSchema() when fetching the database schema information. You normally do not need to set this property unless you want to use your own yii\db\Schema class to support DBMS that i

redis\Cache $redis

$redis public property The Redis yii\redis\Connection object or the application component ID of the Redis yii\redis\Connection. This can also be an array that is used to create a redis yii\redis\Connection instance in case you do not want do configure redis connection as an application component. After the Cache object is created, if you want to change this property, you should only assign it with a Redis yii\redis\Connection object. public yii\redis\Connection|string|array $redis = 'redis