sphinx\MatchBuilder buildHashMatch()

buildHashMatch() public method Creates a MATCH based on column-value pairs. public string buildHashMatch ( $match, &$params )$match array The match condition $params array The expression parameters to be populated return string The MATCH expression

web\Application bootstrap()

bootstrap() protected method Initializes extensions and executes bootstrap components. This method is called by init() after the application has been fully configured. If you override this method, make sure you also call the parent implementation. protected void bootstrap ( )

log\Target $prefix

$prefix public property A PHP callable that returns a string to be prefixed to every exported message. If not set, getMessagePrefix() will be used, which prefixes the message with context information such as user IP, user ID and session ID. The signature of the callable should be function ($message). public callable $prefix = null

db\cubrid\ColumnSchemaBuilder buildFirstString()

buildFirstString() protected method Builds the first constraint for the column. Defaults to unsupported. protected string buildFirstString ( )return string A string containing the FIRST constraint.

db\mysql\QueryBuilder resetSequence()

resetSequence() public method Creates a SQL statement for resetting the sequence value of a table's primary key. The sequence will be reset such that the primary key of the next new row inserted will have the specified value or 1. public string resetSequence ( $tableName, $value = null )$tableName string The name of the table whose primary key sequence will be reset $value mixed The value for the primary key of the next new row inserted. If this is not set, the next new row's primary k

console\controllers\MessageController $except

$except public property List of patterns that specify which files/directories should NOT be processed. If empty or not set, all files/directories will be processed. See helpers/FileHelper::findFiles() description for pattern matching rules. If a file/directory matches both a pattern in "only" and "except", it will NOT be processed. public array $except = ['.svn', '.git', '.gitignore', '.gitkeep', '.hgignore', '.hgkeep', '/messages', '/BaseYii.php']

console\controllers\MessageController $catalog

$catalog public property Name of the file that will be used for translations for "po" format. public string $catalog = 'messages'

db\Schema createColumnSchema()

createColumnSchema() protected method protected yii\db\ColumnSchema createColumnSchema ( )throws yii\base\InvalidConfigException

db\Migration delete()

delete() public method Creates and executes a DELETE SQL statement. public void delete ( $table, $condition = '', $params = [] )$table string The table where the data will be deleted from. $condition array|string The conditions that will be put in the WHERE part. Please refer to yii\db\Query::where() on how to specify conditions. $params array The parameters to be bound to the query.

codeception\TestCase __call()

__call() public method Calls the named method which is not a class method. Do not call this method directly as it is a PHP magic method that will be implicitly called when an unknown method is being invoked. public mixed __call ( $name, $params )$name string The method name $params array Method parameters return mixed The method return value throws yii\base\UnknownMethodException when calling unknown method