db\Query andWhere()

andWhere() public method Adds an additional WHERE condition to the existing one. The new condition and the existing one will be joined using the 'AND' operator. See also: where() orWhere() public $this andWhere ( $condition, $params = [] )$condition string|array|yii\db\Expression The new WHERE condition. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

caching\MemCache flushValues()

flushValues() protected method Deletes all values from cache. This is the implementation of the method declared in the parent class. protected boolean flushValues ( )return boolean Whether the flush operation was successful.

db\BaseActiveRecord hasMany()

hasMany() public method Declares a has-many relation. The declaration is returned in terms of a relational yii\db\ActiveQuery instance through which the related record can be queried and retrieved back. A has-many relation means that there are multiple related records matching the criteria set by this relation, e.g., a customer has many orders. For example, to declare the orders relation for Customer class, we can write the following code in the Customer class: public function getOrders() {

validators\DateValidator $max

$max public property (available since version 2.0.4) Upper limit of the date. Defaults to null, meaning no upper limit. This can be a unix timestamp or a string representing a date time value. If this property is a string, $format will be used to parse it. See also $tooBig for the customized message used when the date is too big. public integer|string $max = null

di\Container getDependencies()

getDependencies() protected method Returns the dependencies of the specified class. protected array getDependencies ( $class )$class string Class name, interface name or alias name return array The dependencies of the specified class.

authclient\BaseOAuth getStateKeyPrefix()

getStateKeyPrefix() protected method Returns session key prefix, which is used to store internal states. protected string getStateKeyPrefix ( )return string Session key prefix.

helpers\BaseConsole isRunningOnWindows()

isRunningOnWindows() public static method Returns true if the console is running on windows public static boolean isRunningOnWindows ( )

validators\NumberValidator $tooSmall

$tooSmall public property User-defined error message used when the value is smaller than $min. public string $tooSmall = null

caching\ArrayCache 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, $duration )$key string The key identifying the value to be cached $value mixed The value to be cached. Most often it's a string. If you have disabled $serializer, it could be something else. $duration integer The number of seconds in w

sphinx\Query showMeta()

showMeta() public method Sets whether to automatically perform 'SHOW META' for the search query. See also showMeta(). public $this showMeta ( $showMeta )$showMeta boolean|string|yii\db\Expression Whether to automatically perform 'SHOW META' return $this The query object itself