db\Connection $pdoClass

$pdoClass public property Custom PDO wrapper class. If not set, it will use PDO or \yii\db\yii\db\mssql\PDO when MSSQL is used. See also $pdo. public string $pdoClass = null

bootstrap\NavBar $brandOptions

$brandOptions public property The HTML attributes of the brand link. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $brandOptions = []

authclient\clients\YandexOAuth apiInternal()

apiInternal() protected method Performs request to the OAuth API. protected array apiInternal ( $accessToken, $url, $method, array $params, array $headers )$accessToken yii\authclient\OAuthToken Actual access token. $url string Absolute API URL. $method string Request method. $params array Request parameters. $headers array Additional request headers. return array API response. throws yii\base\Exception on failure.

elasticsearch\QueryBuilder $db

$db public property The database connection. public yii\elasticsearch\Connection $db = null

mongodb\Connection getCollection()

getCollection() public method Returns the MongoDB collection with the given name. public yii\mongodb\Collection getCollection ( $name, $refresh = false )$name string|array Collection name. If string considered as the name of the collection inside the default database. If array - first element considered as the name of the database, second - as name of collection inside that database $refresh boolean Whether to reload the collection instance even if it is found in the cache. return y

console\controllers\AssetController $defaultAction

$defaultAction public property Controller default action ID. public string $defaultAction = 'compress'

mongodb\Connection EVENT_AFTER_OPEN

EVENT_AFTER_OPEN event of type \yii\mongodb\Event An event that is triggered after a DB connection is established

db\pgsql\QueryBuilder $typeMap

$typeMap public property Mapping from abstract column types (keys) to physical column types (values). public array $typeMap = [\yii\db\pgsql\Schema::TYPE_PK => 'serial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_UPK => 'serial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_BIGPK => 'bigserial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_UBIGPK => 'bigserial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_CHAR => 'char(1)', \yii\db\pgsql\Schema::TYPE_STRING =&

db\oci\Schema resolveTableNames()

resolveTableNames() protected method Resolves the table name and schema name (if any). protected void resolveTableNames ( $table, $name )$table yii\db\TableSchema The table metadata object $name string The table name

helpers\BaseUrl normalizeRoute()

normalizeRoute() protected static method Normalizes route and makes it suitable for UrlManager. Absolute routes are staying as is while relative routes are converted to absolute ones. A relative route is a route without a leading slash, such as "view", "post/view". If the route is an empty string, the current route will be used; If the route contains no slashes at all, it is considered to be an action ID of the current controller and will be prepended with yii\web\Controller::$uniqueId; If