sphinx\Command bindValues()

bindValues() public method Binds a list of values to the corresponding parameters. This is similar to bindValue() except that it binds multiple values at a time. Note that the SQL data type of each value is determined by its PHP type. public $this bindValues ( $values )$values array The values to be bound. This must be given in terms of an associative array with array keys being the parameter names, and array values the corresponding parameter values, e.g. [':name' => 'John', ':age' =

db\Migration dropIndex()

dropIndex() public method Builds and executes a SQL statement for dropping an index. public void dropIndex ( $name, $table )$name string The name of the index to be dropped. The name will be properly quoted by the method. $table string The table whose index is to be dropped. The name will be properly quoted by the method.

base\Application $security

$security public read-only property The security application component. public yii\base\Security getSecurity ( )

widgets\ActiveField radio()

radio() public method Renders a radio button. This method will generate the checked tag attribute according to the model attribute value. public $this radio ( $options = [], $enclosedByLabel = true )$options array The tag options in terms of name-value pairs. The following options are specially handled: uncheck: string, the value associated with the uncheck state of the radio button. If not set, it will take the default value 0. This method will render a hidden input so that if the radi

rbac\DbManager removeChild()

removeChild() public method Removes a child from its parent. Note, the child item is not deleted. Only the parent-child relationship is removed. public boolean removeChild ( $parent, $child )$parent yii\rbac\Item $child yii\rbac\Item return boolean Whether the removal is successful

helpers\BaseInflector camelize()

camelize() public static method Returns given word as CamelCased Converts a word like "send_email" to "SendEmail". It will remove non alphanumeric character from the word, so "who's online" will be converted to "WhoSOnline" See also variablize(). public static string camelize ( $word )$word string The word to CamelCase

debug\panels\ConfigPanel $summary

$summary public read-only property Content that is displayed at debug toolbar public string getSummary ( )

db\ActiveRelationTrait __clone()

__clone() public method Clones internal objects. public void __clone ( )

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.

elasticsearch\BulkCommand $actions

$actions public property Actions to be executed in this bulk command, given as either an array of arrays or as one newline-delimited string. All actions except delete span two lines. public array|string $actions = null