base\Security $derivationIterations

$derivationIterations public property Derivation iterations count. Set as high as possible to hinder dictionary password attacks. public integer $derivationIterations = 100000

mongodb\Query all()

all() public method Executes the query and returns all results as an array. public array all ( $db = null )$db yii\mongodb\Connection The Mongo connection used to execute the query. If this parameter is not given, the mongodb application component will be used. return array The query results. If the query results in nothing, an empty array will be returned.

web\Application getSession()

getSession() public method Returns the session component. public yii\web\Session getSession ( )return yii\web\Session The session component.

validators\IpValidator $ipv6

$ipv6 public property Whether the validating value can be an IPv6 address. Defaults to true. public boolean $ipv6 = true

web\Request setPathInfo()

setPathInfo() public method Sets the path info of the current request. This method is mainly provided for testing purpose. public void setPathInfo ( $value )$value string The path info of the current request

rest\ActiveController $createScenario

$createScenario public property The scenario used for creating a model. See also yii\base\Model::scenarios(). public string $createScenario = \yii\base\Model::SCENARIO_DEFAULT

sphinx\QueryBuilder buildHaving()

buildHaving() public method public string buildHaving ( $indexes, $condition, &$params )$indexes string[] List of index names, which affected by query $condition string|array $params array The binding parameters to be populated return string The HAVING clause built from yii\sphinx\Query::$having.

web\CacheSession getUseCustomStorage()

getUseCustomStorage() public method Returns a value indicating whether to use custom session storage. This method overrides the parent implementation and always returns true. public boolean getUseCustomStorage ( )return boolean Whether to use custom storage.

redis\Session calculateKey()

calculateKey() protected method Generates a unique key used for storing session data in cache. protected string calculateKey ( $id )$id string Session variable name return string A safe cache key associated with the session variable name

console\controllers\BaseMigrateController actionRedo()

actionRedo() public method Redoes the last few migrations. This command will first revert the specified migrations, and then apply them again. For example, yii migrate/redo # redo the last applied migration yii migrate/redo 3 # redo the last 3 applied migrations yii migrate/redo all # redo all migrations public integer actionRedo ( $limit = 1 )$limit integer The number of migrations to be redone. Defaults to 1, meaning the last applied migration will be redone. return integer Th