mongodb\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\mongodb\Query $query = null

data\ActiveDataProvider setSort()

setSort() public method Sets the sort definition for this data provider. public void setSort ( $value )$value array|yii\data\Sort|boolean The sort definition to be used by this data provider. This can be one of the following: a configuration array for creating the sort definition object. The "class" element defaults to 'yii\data\Sort' an instance of yii\data\Sort or its subclass false, if sorting needs to be disabled. throws yii\base\InvalidParamException

web\Response sendStreamAsFile()

sendStreamAsFile() public method Sends the specified stream as a file to the browser. Note that this method only prepares the response for file sending. The file is not sent until send() is called explicitly or implicitly. The latter is done after you return from a controller action. See also sendFile() for an example implementation. public $this sendStreamAsFile ( $handle, $attachmentName, $options = [] )$handle resource The handle of the stream to be sent. $attachmentName string The

log\Target $exportInterval

$exportInterval public property How many messages should be accumulated before they are exported. Defaults to 1000. Note that messages will always be exported when the application terminates. Set this property to be 0 if you don't want to export messages until the application terminates. public integer $exportInterval = 1000

db\ActiveRecord tableName()

tableName() public static method Declares the name of the database table associated with this AR class. By default this method returns the class name as the table name by calling yii\helpers\Inflector::camel2id() with prefix yii\db\Connection::$tablePrefix. For example if yii\db\Connection::$tablePrefix is tbl_, Customer becomes tbl_customer, and OrderItem becomes tbl_order_item. You may override this method if the table is not named after this convention. public static string tableName (

gii\generators\form\Generator attributeLabels()

attributeLabels() public method Returns the attribute labels. Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users. By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels. Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent

db\ColumnSchemaBuilder $check

$check protected property The CHECK constraint for the column. protected string $check = null

elasticsearch\Command createTemplate()

createTemplate() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html. public mixed createTemplate ( $name, $pattern, $settings, $mappings, $order = 0 )$name $pattern $settings $mappings $order integer

caching\Cache getValues()

getValues() protected method Retrieves multiple values from cache with the specified keys. The default implementation calls getValue() multiple times to retrieve the cached values one by one. If the underlying cache storage supports multiget, this method should be overridden to exploit that feature. protected array getValues ( $keys )$keys array A list of keys identifying the cached values return array A list of cached values indexed by the keys

twig\ViewRenderer $lexerOptions

$lexerOptions public write-only property Twig lexer options. Example: Smarty-like syntax: `php [ 'tag_comment' => ['{*', '*}'], 'tag_block' => ['{', '}'], 'tag_variable' => ['{$', '}'] ] ` See also http://twig.sensiolabs.org/doc/recipes.html#customizing-the-syntax. public void setLexerOptions ( $options )