console\Controller $interactive

$interactive public property Whether to run the command interactively. public boolean $interactive = true

widgets\Pjax $linkSelector

$linkSelector public property The jQuery selector of the links that should trigger pjax requests. If not set, all links within the enclosed content of Pjax will trigger pjax requests. If set to false, no code will be registered to handle links. Note that if the response to the pjax request is a full page, a normal request will be sent again. public string|false $linkSelector = null

db\Connection quoteTableName()

quoteTableName() public method Quotes a table name for use in a query. If the table name contains schema prefix, the prefix will also be properly quoted. If the table name is already quoted or contains special characters including '(', '[[' and '{{', then this method will do nothing. public string quoteTableName ( $name )$name string Table name return string The properly quoted table name

sphinx\Connection escapeMatchValue()

escapeMatchValue() public method Escapes all special characters from 'MATCH' statement argument. Make sure you are using this method whenever composing 'MATCH' search statement. Note: this method does not perform quoting, you should place the result in the quotes an perform additional escaping for it manually, the best way to do it is using PDO parameter. public string escapeMatchValue ( $str )$str string String to be escaped. return string The properly escaped string.

authclient\BaseClient getName()

getName() public method public string getName ( )return string Service name.

debug\panels\AssetPanel save()

save() public method Saves data to be later used in debugger detail view. This method is called on every page where debugger is enabled. public mixed save ( )return mixed Data to be saved

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

rbac\ManagerInterface getUserIdsByRole()

getUserIdsByRole() public abstract method (available since version 2.0.7) Returns all user IDs assigned to the role specified. public abstract array getUserIdsByRole ( $roleName )$roleName string return array Array of user ID strings

faker\FixtureController generateFixtureFile()

generateFixtureFile() public method Generates fixture file by the given fixture template file. public void generateFixtureFile ( $templateName, $templatePath, $fixtureDataPath )$templateName string Template file name $templatePath string Path where templates are stored $fixtureDataPath string Fixture data path where generated file should be written

i18n\Formatter asHtml()

asHtml() public method Formats the value as HTML text. The value will be purified using yii\helpers\HtmlPurifier to avoid XSS attacks. Use asRaw() if you do not want any purification of the value. public string asHtml ( $value, $config = null )$value string The value to be formatted. $config array|null The configuration for the HTMLPurifier class. return string The formatted result.