helpers\BaseConsole clearLine()

clearLine() public static method Clears the line, the cursor is currently on by sending ANSI control code EL with argument 2 to the terminal. Cursor position will not be changed. public static void clearLine ( )

i18n\Formatter asRaw()

asRaw() public method Formats the value as is without any formatting. This method simply returns back the parameter without any format. The only exception is a null value which will be formatted using $nullDisplay. public string asRaw ( $value )$value mixed The value to be formatted. return string The formatted result.

mongodb\ActiveRecord primaryKey()

primaryKey() public static method Returns the primary key name(s) for this AR class. The default implementation will return ['_id']. Note that an array should be returned even for a collection with single primary key. public static string[] primaryKey ( )return string[] The primary keys of the associated Mongo collection.

widgets\Menu renderItems()

renderItems() protected method Recursively renders the menu items (without the container tag). protected string renderItems ( $items )$items array The menu items to be rendered recursively return string The rendering result

mongodb\file\Download getBytes()

getBytes() public method Alias of toString() method. public string getBytes ( )return string File content.

db\TableSchema $name

$name public property The name of this table. The schema name is not included. Use $fullName to get the name with schema name prefix. public string $name = null

data\BaseDataProvider refresh()

refresh() public method Refreshes the data provider. After calling this method, if getModels(), getKeys() or getTotalCount() is called again, they will re-execute the query and return the latest data available. public void refresh ( )

db\ColumnSchemaBuilder buildUniqueString()

buildUniqueString() protected method Builds the unique constraint for the column. protected string buildUniqueString ( )return string Returns string 'UNIQUE' if $isUnique is true, otherwise it returns an empty string.

db\mssql\QueryBuilder buildSubqueryInCondition()

buildSubqueryInCondition() protected method Builds SQL for IN condition protected string buildSubqueryInCondition ( $operator, $columns, $values, &$params )$operator string $columns array $values yii\db\Query $params array return string SQL throws yii\base\NotSupportedException if $columns is an array

sphinx\QueryBuilder buildGroupBy()

buildGroupBy() public method public string buildGroupBy ( $columns, $limit )$columns array Group columns $limit integer Group limit return string The GROUP BY clause