authclient\BaseOAuth processResponse()

processResponse() protected method Processes raw response converting it to actual data. protected array processResponse ( $rawResponse, $contentType = self::CONTENT_TYPE_AUTO )$rawResponse string Raw response. $contentType string Response content type. return array Actual response. throws yii\base\Exception on failure.

mongodb\Command addDelete()

addDelete() public method Adds the delete operation to the batch command. See also executeBatch(). public $this addDelete ( $condition, $options = [] )$condition array Filter condition. $options array Delete options. return $this Self reference.

mongodb\gii\model\Generator validateCollectionName()

validateCollectionName() public method Validates the $collectionName attribute. public void validateCollectionName ( )

mongodb\ActiveQuery $collection

$collection public read-only property Collection instance. public yii\mongodb\Collection getCollection ( $db = null )

db\Connection quoteSql()

quoteSql() public method Processes a SQL statement by quoting table and column names that are enclosed within double brackets. Tokens enclosed within double curly brackets are treated as table names, while tokens enclosed within double square brackets are column names. They will be quoted accordingly. Also, the percentage character "%" at the beginning or ending of a table name will be replaced with $tablePrefix. public string quoteSql ( $sql )$sql string The SQL to be quoted return str

rest\UrlRule $tokens

$tokens public property List of tokens that should be replaced for each pattern. The keys are the token names, and the values are the corresponding replacements. See also $patterns. public array $tokens = ['{id}' => '<id:\\d[\\d,]*>']

db\Migration dropPrimaryKey()

dropPrimaryKey() public method Builds and executes a SQL statement for dropping a primary key. public void dropPrimaryKey ( $name, $table )$name string The name of the primary key constraint to be removed. $table string The table that the primary key constraint will be removed from.

helpers\BaseConsole moveCursorTo()

moveCursorTo() public static method Moves the cursor to an absolute position given as column and row by sending ANSI control code CUP or CHA to the terminal. public static void moveCursorTo ( $column, $row = null )$column integer 1-based column number, 1 is the left edge of the screen. $row integer|null 1-based row number, 1 is the top edge of the screen. if not set, will move cursor only in current line.

web\UrlManager setRuleToCache()

setRuleToCache() protected method (available since version 2.0.8) Store rule (e.g. yii\web\UrlRule) to internal cache protected void setRuleToCache ( $cacheKey, yii\web\UrlRuleInterface $rule )$cacheKey $rule yii\web\UrlRuleInterface

db\QueryTrait indexBy()

indexBy() public method Sets the indexBy() property. public $this indexBy ( $column )$column string|callable The name of the column by which the query results should be indexed by. This can also be a callable (e.g. anonymous function) that returns the index value based on the given row data. The signature of the callable should be: function ($row) { // return the index value corresponding to $row } return $this The query object itself