console\Application coreCommands()

coreCommands() public method Returns the configuration of the built-in commands. public array coreCommands ( )return array The configuration of the built-in commands.

caching\WinCache setValue()

setValue() protected method Stores a value identified by a key in cache. This is the implementation of the method declared in the parent class. protected boolean setValue ( $key, $value, $duration )$key string The key identifying the value to be cached $value mixed The value to be cached. Most often it's a string. If you have disabled $serializer, it could be something else. $duration integer The number of seconds in which the cached value will expire. 0 means never expire. return b

widgets\Pjax $submitEvent

$submitEvent public property (available since version 2.0.9) The jQuery event that will trigger form handler. Defaults to "submit". public string $submitEvent = 'submit'

elasticsearch\BatchQueryResult $each

$each public property Whether to return a single row during each iteration. If false, a whole batch of rows will be returned in each iteration. public boolean $each = false

helpers\BaseHtml renderTagAttributes()

renderTagAttributes() public static method Renders the HTML tag attributes. Attributes whose values are of boolean type will be treated as boolean attributes. Attributes whose values are null will not be rendered. The values of attributes will be HTML-encoded using encode(). The "data" attribute is specially handled when it is receiving an array value. In this case, the array will be "expanded" and a list data attributes will be rendered. For example, if 'data' => ['id' => 1, 'name' =

data\ArrayDataProvider prepareModels()

prepareModels() protected method Prepares the data models that will be made available in the current page. protected array prepareModels ( )return array The available data models

db\mysql\QueryBuilder dropCommentFromTable()

dropCommentFromTable() public method (available since version 2.0.8) Builds a SQL command for adding comment to table public string dropCommentFromTable ( $table )$table string The table whose column is to be commented. The table name will be properly quoted by the method. return string The SQL statement for adding comment on column

mongodb\Database listCollections()

listCollections() public method (available since version 2.1.1) Returns the list of available collections in this database. public array listCollections ( $condition = [], $options = [] )$condition array Filter condition. $options array Options list. return array Collections information.

console\controllers\HelpController getSubCommandHelp()

getSubCommandHelp() protected method Displays the detailed information of a command action. protected void getSubCommandHelp ( $controller, $actionID )$controller yii\console\Controller The controller instance $actionID string Action ID throws yii\console\Exception if the action does not exist

sphinx\Command renameTable()

renameTable() public method Creates a SQL command for renaming a DB table. public $this renameTable ( $table, $newName )$table string The table to be renamed. The name will be properly quoted by the method. $newName string The new table name. The name will be properly quoted by the method. return $this The command object itself