mutex\OracleMutex $lockMode

$lockMode public property Lock mode to be used. See also http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_lock.htm#CHDBCFDI. public string $lockMode = self::MODE_X

elasticsearch\ActiveDataProvider getAggregations()

getAggregations() public method public array getAggregations ( )return array All aggregations results

sphinx\QueryBuilder build()

build() public method Generates a SELECT SQL statement from a yii\sphinx\Query object. public array build ( $query, $params = [] )$query yii\sphinx\Query The yii\sphinx\Query object from which the SQL statement will be generated $params array The parameters to be bound to the generated SQL statement. These parameters will be included in the result with the additional parameters generated during the query building process. return array The generated SQL statement (the first array elem

validators\DefaultValueValidator $value

$value public property The default value or an anonymous function that returns the default value which will be assigned to the attributes being validated if they are empty. The signature of the anonymous function should be as follows, function($model, $attribute) { // compute value return $value; } public mixed $value = null

db\BaseActiveRecord beforeSave()

beforeSave() public method This method is called at the beginning of inserting or updating a record. The default implementation will trigger an EVENT_BEFORE_INSERT event when $insert is true, or an EVENT_BEFORE_UPDATE event if $insert is false. When overriding this method, make sure you call the parent implementation like the following: public function beforeSave($insert) { if (parent::beforeSave($insert)) { // ...custom code here... return true; } else { ret

rbac\ManagerInterface removeAllPermissions()

removeAllPermissions() public abstract method Removes all permissions. All parent child relations will be adjusted accordingly. public abstract void removeAllPermissions ( )

mongodb\ActiveRecord primaryKey()

primaryKey() public static method Returns the primary key name(s) for this AR class. The default implementation will return ['_id']. Note that an array should be returned even for a collection with single primary key. public static string[] primaryKey ( )return string[] The primary keys of the associated Mongo collection.

mail\BaseMailer sendMultiple()

sendMultiple() public method Sends multiple messages at once. The default implementation simply calls send() multiple times. Child classes may override this method to implement more efficient way of sending multiple messages. public integer sendMultiple ( array $messages )$messages array List of email messages, which should be sent. return integer Number of messages that are successfully sent.

mail\MailerInterface sendMultiple()

sendMultiple() public abstract method Sends multiple messages at once. This method may be implemented by some mailers which support more efficient way of sending multiple messages in the same batch. public abstract integer sendMultiple ( array $messages )$messages array List of email messages, which should be sent. return integer Number of messages that are successfully sent.

filters\auth\HttpBasicAuth $realm

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