sphinx\MatchBuilder buildMatch()

buildMatch() public method Create MATCH expression. public string buildMatch ( $match, &$params )$match string|array MATCH specification. $params array The expression parameters to be populated return string The MATCH expression

web\Session $flashParam

$flashParam public property The name of the session variable that stores the flash message data. public string $flashParam = '__flash'

mongodb\Command endProfile()

endProfile() protected method Marks the end of a code block for profiling. See also beginProfile(). protected void endProfile ( $token, $category )$token string Token for the code block $category string The category of this log message

console\controllers\CacheController actionFlush()

actionFlush() public method Flushes given cache components. For example, # flushes caches specified by their id: "first", "second", "third" yii cache/flush first second third public void actionFlush ( )

helpers\BaseStringHelper basename()

basename() public static method Returns the trailing name component of a path. This method is similar to the php function basename() except that it will treat both \ and / as directory separators, independent of the operating system. This method was mainly created to work on php namespaces. When working with real file paths, php's basename() should work fine for you. Note: this method is not aware of the actual filesystem, or path components such as "..". See also http://www.php.net/manual/

base\Model validateMultiple()

validateMultiple() public static method Validates multiple models. This method will validate every model. The models being validated may be of the same or different types. public static boolean validateMultiple ( $models, $attributeNames = null )$models array The models to be validated $attributeNames array List of attribute names that should be validated. If this parameter is empty, it means any attribute listed in the applicable validation rules should be validated. return boolean

base\ArrayAccessTrait offsetSet()

offsetSet() public method This method is required by the interface ArrayAccess. public void offsetSet ( $offset, $item )$offset integer The offset to set element $item mixed The element value

elasticsearch\QueryBuilder build()

build() public method Generates query from a yii\elasticsearch\Query object. public array build ( $query )$query yii\elasticsearch\Query The yii\elasticsearch\Query object from which the query will be generated return array The generated SQL statement (the first array element) and the corresponding parameters to be bound to the SQL statement (the second array element).

helpers\BaseInflector classify()

classify() public static method Converts a table name to its class name. For example, converts "people" to "Person" public static string classify ( $tableName )$tableName string

mail\BaseMailer $fileTransportCallback

$fileTransportCallback public property A PHP callback that will be called by send() when $useFileTransport is true. The callback should return a file name which will be used to save the email message. If not set, the file name will be generated based on the current timestamp. The signature of the callback is: function ($mailer, $message) public callable $fileTransportCallback = null