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

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.

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.

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

web\TooManyRequestsHttpException __construct()

__construct() public method Constructor. public void __construct ( $message = null, $code = 0, Exception $previous = null )$message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.

authclient\BaseOAuth getState()

getState() protected method Returns persistent state value. protected mixed getState ( $key )$key string State key. return mixed State value.

db\BatchQueryResult $query

$query public property The query object associated with this batch query. Do not modify this property directly unless after reset() is called explicitly. public yii\db\Query $query = null

mongodb\ActiveFixture init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )