rbac\Assignment $userId

$userId public property User ID (see yii\web\User::$id) public string|integer $userId = null

gii\console\GenerateController $module

$module public property public yii\gii\Module $module = null

authclient\clients\LinkedIn $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://api.linkedin.com/v1'

elasticsearch\DebugAction $controller

$controller public property public yii\debug\controllers\DefaultController $controller = null

mongodb\debug\MongoDbPanel getSummaryName()

getSummaryName() public method public string getSummaryName ( )return string Short name of the panel, which will be use in summary.

base\Security decryptByKey()

decryptByKey() public method Verifies and decrypts data encrypted with encryptByKey(). See also encryptByKey(). public boolean|string decryptByKey ( $data, $inputKey, $info = null )$data string The encrypted data to decrypt $inputKey string The input to use for encryption and authentication $info string Optional context and application specific information, see hkdf() return boolean|string The decrypted data or false on authentication failure

elasticsearch\Connection put()

put() public method Performs PUT HTTP request public mixed put ( $url, $options = [], $body = null, $raw = false )$url string|array URL $options array URL options $body string Request body $raw boolean If response body contains JSON and should be decoded return mixed Response throws yii\elasticsearch\Exception throws yii\base\InvalidConfigException

db\Query batch()

batch() public method Starts a batch query. A batch query supports fetching data in batches, which can keep the memory usage under a limit. This method will return a yii\db\BatchQueryResult object which implements the Iterator interface and can be traversed to retrieve the data in batches. For example, $query = (new Query)->from('user'); foreach ($query->batch() as $rows) { // $rows is an array of 100 or fewer rows from user table } public yii\db\BatchQueryResult batch ( $batch

db\pgsql\Schema findSchemaNames()

findSchemaNames() protected method (available since version 2.0.4) Returns all schema names in the database, including the default one but not system schemas. This method should be overridden by child classes in order to support this feature because the default implementation simply throws an exception. protected array findSchemaNames ( )return array All schema names in the database, except system schemas

db\mysql\ColumnSchemaBuilder buildFirstString()

buildFirstString() protected method Builds the first constraint for the column. Defaults to unsupported. protected string buildFirstString ( )return string A string containing the FIRST constraint.