test\BaseActiveFixture $dataFile

$dataFile public property The file path or path alias of the data file that contains the fixture data to be returned by getData(). You can set this property to be false to prevent loading any data. public string|boolean $dataFile = null

validators\StringValidator $min

$min public property Minimum length. If not set, it means no minimum length limit. See also $tooShort for the customized message for a too short string. public integer $min = null

sphinx\Query join()

join() public method Appends a JOIN part to the query. The first parameter specifies what type of join it is. public $this join ( $type, $table, $on = '', $params = [] )$type string The type of join, such as INNER JOIN, LEFT JOIN. $table string|array The table to be joined. Use a string to represent the name of the table to be joined. The table name can contain a schema prefix (e.g. 'public.user') and/or table alias (e.g. 'user u'). The method will automatically quote the table name

db\Query having()

having() public method Sets the HAVING part of the query. See also: andHaving() orHaving() public $this having ( $condition, $params = [] )$condition string|array|yii\db\Expression The conditions to be put after HAVING. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

debug\Module $defaultPanel

$defaultPanel public property (available since version 2.0.7) The name of the panel that should be visible when opening the debug panel. The default value is 'log'. public string $defaultPanel = 'log'

redis\LuaScriptBuilder buildMin()

buildMin() public method Builds a Lua script for finding the min value of a column public string buildMin ( $query, $column )$query yii\redis\ActiveQuery The query used to build the script $column string Name of the column

db\ActiveRecordInterface update()

update() public abstract method Saves the changes to this active record into the database. Usage example: $customer = Customer::findOne($id); $customer->name = $name; $customer->email = $email; $customer->update(); public abstract integer|boolean update ( $runValidation = true, $attributeNames = null )$runValidation boolean Whether to perform validation (calling \yii\db\Model::validate()) before saving the record. Defaults to true. If the validation fails, the record will not b

sphinx\Schema getPdoType()

getPdoType() public method Determines the PDO type for the given PHP data value. See also http://www.php.net/manual/en/pdo.constants.php. public integer getPdoType ( $data )$data mixed The data whose PDO type is to be determined return integer The PDO type

filters\auth\AuthMethod challenge()

challenge() public method Generates challenges upon authentication failure. For example, some appropriate HTTP headers may be generated. public void challenge ( $response )$response yii\web\Response

mail\BaseMailer generateMessageFileName()

generateMessageFileName() public method public string generateMessageFileName ( )return string The file name for saving the message when $useFileTransport is true.