mongodb\Session gcSession()

gcSession() public method Session GC (garbage collection) handler. Do not call this method directly. public boolean gcSession ( $maxLifetime )$maxLifetime integer The number of seconds after which data will be seen as 'garbage' and cleaned up. return boolean Whether session is GCed successfully

data\Pagination $totalCount

$totalCount public property Total number of items. public integer $totalCount = 0

base\Module setModule()

setModule() public method Adds a sub-module to this module. public void setModule ( $id, $module )$id string Module ID. $module yii\base\Module|array|null The sub-module to be added to this module. This can be one of the following: a yii\base\Module object a configuration array: when getModule() is called initially, the array will be used to instantiate the sub-module null: the named sub-module will be removed from this module

bootstrap\ButtonDropdown $containerOptions

$containerOptions public property (available since version 2.0.1) The HTML attributes for the container tag. The following special options are recognized: tag: string, defaults to "div", the name of the container tag. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $containerOptions = []

rbac\ManagerInterface add()

add() public abstract method Adds a role, permission or rule to the RBAC system. public abstract boolean add ( $object )$object yii\rbac\Role|yii\rbac\Permission|yii\rbac\Rule return boolean Whether the role, permission or rule is successfully added to the system throws Exception if data validation or saving fails (such as the name of the role or permission is not unique)

redis\ActiveQuery average()

average() public method Returns the average of the specified column values. public integer average ( $column, $db = null )$column string The column name or expression. Make sure you properly quote column names in the expression. $db yii\redis\Connection The database connection used to execute the query. If this parameter is not given, the db application component will be used. return integer The average of the specified column values.

db\mssql\QueryBuilder buildCompositeInCondition()

buildCompositeInCondition() protected method Builds SQL for IN condition protected string buildCompositeInCondition ( $operator, $columns, $values, &$params )$operator string $columns array $values array $params array return string SQL

redis\Connection $redisCommands

$redisCommands public property List of available redis commands http://redis.io/commands public array $redisCommands = ['BLPOP', 'BRPOP', 'BRPOPLPUSH', 'CLIENT KILL', 'CLIENT LIST', 'CLIENT GETNAME', 'CLIENT SETNAME', 'CONFIG GET', 'CONFIG SET', 'CONFIG RESETSTAT', 'DBSIZE', 'DEBUG OBJECT', 'DEBUG SEGFAULT', 'DECR', 'DECRBY', 'DEL', 'DISCARD', 'DUMP', 'ECHO', 'EVAL', 'EVALSHA', 'EXEC', 'EXISTS', 'EXPIRE', 'EXPIREAT', 'FLUSHALL', 'FLUSHDB', 'GET', 'GETBIT', 'GETRANGE', 'GETSET', 'HDEL', 'HE

mongodb\validators\MongoDateValidator parseDateValue()

parseDateValue() protected method Parses date string into UNIX timestamp protected integer|false parseDateValue ( $value )$value string String representing date return integer|false A UNIX timestamp or false on failure.

rest\Serializer serialize()

serialize() public method Serializes the given data into a format that can be easily turned into other formats. This method mainly converts the objects of recognized types into array representation. It will not do conversion for unknown object types or non-object data. The default implementation will handle yii\base\Model and yii\data\DataProviderInterface. You may override this method to support more object types. public mixed serialize ( $data )$data mixed The data to be serialized. r