web\Request $hostInfo

$hostInfo public property Schema and hostname part (with port number if needed) of the request URL (e.g. http://www.yiiframework.com), null if can't be obtained from $_SERVER and wasn't set. public string|null getHostInfo ( )public void setHostInfo ( $value )

log\Logger getDbProfiling()

getDbProfiling() public method Returns the statistical results of DB queries. The results returned include the number of SQL statements executed and the total time spent. public array getDbProfiling ( )return array The first element indicates the number of SQL statements executed, and the second element the total time spent in SQL execution.

widgets\Menu $params

$params public property The parameters used to determine if a menu item is active or not. If not set, it will use $_GET. See also: $route isItemActive() public array $params = null

db\mysql\Schema loadColumnSchema()

loadColumnSchema() protected method Loads the column information into a yii\db\ColumnSchema object. protected yii\db\ColumnSchema loadColumnSchema ( $info )$info array Column information return yii\db\ColumnSchema The column schema object

base\Object __isset()

__isset() public method Checks if a property is set, i.e. defined and not null. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing isset($object->property). Note that if the property is not defined, false will be returned. See also http://php.net/manual/en/function.isset.php. public boolean __isset ( $name )$name string The property name or the event name return boolean Whether the named property is set (not null).

validators\CompareValidator $operator

$operator public property The operator for comparison. The following operators are supported: ==: check if two values are equal. The comparison is done is non-strict mode. ===: check if two values are equal. The comparison is done is strict mode. !=: check if two values are NOT equal. The comparison is done is non-strict mode. !==: check if two values are NOT equal. The comparison is done is strict mode. >: check if value being validated is greater than the value being compared with

widgets\ActiveForm $validationUrl

$validationUrl public property The URL for performing AJAX-based validation. This property will be processed by yii\helpers\Url::to(). Please refer to yii\helpers\Url::to() for more details on how to configure this property. If this property is not set, it will take the value of the form's action attribute. public array|string $validationUrl = null

caching\Cache flushValues()

flushValues() protected abstract method Deletes all values from cache. Child classes may implement this method to realize the flush operation. protected abstract boolean flushValues ( )return boolean Whether the flush operation was successful.

sphinx\Command callKeywords()

callKeywords() public method Returns tokenized and normalized forms of the keywords, and, optionally, keyword statistics. public $this callKeywords ( $index, $text, $fetchStatistic = false )$index string The name of the index from which to take the text processing settings $text string The text to break down to keywords. $fetchStatistic boolean Whether to return document and hit occurrence statistics return $this The command object itself

filters\auth\HttpBearerAuth $realm

$realm public property The HTTP authentication realm public string $realm = 'api'