helpers\BaseHtml endTag()

endTag() public static method Generates an end tag. See also: beginTag() tag() public static string endTag ( $name )$name string|boolean|null The tag name. If $name is null or false, the corresponding content will be rendered without any tag. return string The generated end tag

elasticsearch\ElasticsearchTarget prepareMessage()

prepareMessage() public method Prepares a log message. public string prepareMessage ( $message )$message array The log message to be formatted.

authclient\BaseOAuth $accessToken

$accessToken public property public yii\authclient\OAuthToken getAccessToken ( )public void setAccessToken ( $token )

mongodb\Cache addValue()

addValue() protected method Stores a value identified by a key into cache if the cache does not contain this key. This method should be implemented by child classes to store the data in specific cache storage. protected boolean addValue ( $key, $value, $expire )$key string The key identifying the value to be cached $value string The value to be cached $expire integer The number of seconds in which the cached value will expire. 0 means never expire. return boolean True if the value

mongodb\Cache flushValues()

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

sphinx\ActiveFixture getIndexSchema()

getIndexSchema() public method public yii\sphinx\IndexSchema getIndexSchema ( )return yii\sphinx\IndexSchema The schema information of the database table associated with this fixture. throws yii\base\InvalidConfigException if the index does not exist or not a runtime type

caching\MemCache setServers()

setServers() public method See also: http://php.net/manual/en/memcache.addserver.php http://php.net/manual/en/memcached.addserver.php public void setServers ( $config )$config array List of memcache or memcached server configurations. Each element must be an array with the following keys: host, port, persistent, weight, timeout, retryInterval, status.

mongodb\Cache $db

$db public property The MongoDB connection object or the application component ID of the MongoDB connection. After the Cache object is created, if you want to change this property, you should only assign it with a MongoDB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\mongodb\Connection|array|string $db = 'mongodb'

mongodb\Cache gc()

gc() public method Removes the expired data values. public void gc ( $force = false )$force boolean Whether to enforce the garbage collection regardless of $gcProbability. Defaults to false, meaning the actual deletion happens with the probability as specified by $gcProbability.

elasticsearch\BulkCommand $type

$type public property Default type to execute the queries on. Defaults to null meaning that type needs to be specified in every action. public string $type = null