widgets\LinkPager $pagination

$pagination public property The pagination object that this pager is associated with. You must set this property in order to make LinkPager work. public yii\data\Pagination $pagination = null

base\ActionEvent __construct()

__construct() public method Constructor. public void __construct ( $action, $config = [] )$action yii\base\Action The action associated with this action event. $config array Name-value pairs that will be used to initialize the object properties

mongodb\rbac\MongoDbManager $cache

$cache public property The cache used to improve RBAC performance. This can be one of the following: an application component ID (e.g. cache) a configuration array a yii\caching\Cache object When this is not set, it means caching is not enabled. Note that by enabling RBAC cache, all auth items, rules and auth item parent-child relationships will be cached and loaded into memory. This will improve the performance of RBAC permission check. However, it does require extra memory and as a result

authclient\ClientInterface getName()

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

base\Application end()

end() public method Terminates the application. This method replaces the exit() function by ensuring the application life cycle is completed before terminating the application. public void end ( $status = 0, $response = null )$status integer The exit status (value 0 means normal exit while other values mean abnormal exit). $response yii\base\Response The response to be sent. If not set, the default application $response component will be used. throws yii\base\ExitException if the app

swiftmailer\Message $returnPath

$returnPath public property The bounce email address. public string getReturnPath ( )public $this setReturnPath ( $address )

base\Model safeAttributes()

safeAttributes() public method Returns the attribute names that are safe to be massively assigned in the current scenario. public string[] safeAttributes ( )return string[] Safe attribute names

db\ColumnSchemaBuilder $check

$check protected property The CHECK constraint for the column. protected string $check = null

db\ActiveRecordInterface updateAll()

updateAll() public abstract static method Updates records using the provided attribute values and conditions. For example, to change the status to be 1 for all customers whose status is 2: Customer::updateAll(['status' => 1], ['status' => '2']); public abstract static integer updateAll ( $attributes, $condition = null )$attributes array Attribute values (name-value pairs) to be saved for the record. Unlike update() these are not going to be validated. $condition array The condit

mongodb\ActiveRecord toArray()

toArray() public method Converts the model into an array. This method will first identify which fields to be included in the resulting array by calling resolveFields(). It will then turn the model into an array with these fields. If $recursive is true, any embedded objects will also be converted into arrays. If the model implements the \yii\mongodb\Linkable interface, the resulting array will also have a _link element which refers to a list of links as specified by the interface. public a