caching\Cache getValue()

getValue() protected abstract method Retrieves a value from cache with a specified key. This method should be implemented by child classes to retrieve the data from specific cache storage. protected abstract mixed|false getValue ( $key )$key string A unique key identifying the cached value return mixed|false The value stored in cache, false if the value is not in the cache or expired. Most often value is a string. If you have disabled $serializer, it could be something else.

i18n\MissingTranslationEvent $translatedMessage

$translatedMessage public property The translated message. An event handler may overwrite this property with a translated version of $message if possible. If not set (null), it means the message is not translated. public string $translatedMessage = null

db\sqlite\QueryBuilder renameColumn()

renameColumn() public method Builds a SQL statement for renaming a column. public string renameColumn ( $table, $oldName, $newName )$table string The table whose column is to be renamed. The name will be properly quoted by the method. $oldName string The old name of the column. The name will be properly quoted by the method. $newName string The new name of the column. The name will be properly quoted by the method. return string The SQL statement for renaming a DB column. throws y

gii\generators\model\Generator autoCompleteData()

autoCompleteData() public method Returns the list of auto complete values. The array keys are the attribute names, and the array values are the corresponding auto complete values. Auto complete values can also be callable typed in order one want to make postponed data generation. public array autoCompleteData ( )return array The list of auto complete values

validators\FilterValidator $skipOnArray

$skipOnArray public property Whether the filter should be skipped if an array input is given. If true and an array input is given, the filter will not be applied. public boolean $skipOnArray = false

db\mysql\Schema findTableNames()

findTableNames() protected method Returns all table names in the database. protected array findTableNames ( $schema = '' )$schema string The schema of the tables. Defaults to empty string, meaning the current or default schema. return array All table names in the database. The names have NO schema name prefix.

db\BaseActiveRecord isAttributeChanged()

isAttributeChanged() public method Returns a value indicating whether the named attribute has been changed. public boolean isAttributeChanged ( $name, $identical = true )$name string The name of the attribute. $identical boolean Whether the comparison of new and old value is made for identical values using ===, defaults to true. Otherwise == is used for comparison. This parameter is available since version 2.0.4. return boolean Whether the attribute has been changed

authclient\clients\Facebook initUserAttributes()

initUserAttributes() protected method Initializes authenticated user attributes. protected array initUserAttributes ( )return array Auth user attributes.

mongodb\file\Download $chunkIterator

$chunkIterator public read-only property Chuck cursor iterator. public Iterator getChunkIterator ( $refresh = false )

redis\Connection getDriverName()

getDriverName() public method Returns the name of the DB driver for the current \yii\redis\dsn. public string getDriverName ( )return string Name of the DB driver