base\Response clearOutputBuffers()

clearOutputBuffers() public method Removes all existing output buffers. public void clearOutputBuffers ( )

db\mssql\Schema findUniqueIndexes()

findUniqueIndexes() public method (available since version 2.0.4) Returns all unique indexes for the given table. Each array element is of the following structure: [ 'IndexName1' => ['col1' [, ...]], 'IndexName2' => ['col2' [, ...]], ] public array findUniqueIndexes ( $table )$table yii\db\mssql\TableSchema The table metadata return array All unique indexes for the given table.

filters\auth\CompositeAuth $authMethods

$authMethods public property The supported authentication methods. This property should take a list of supported authentication methods, each represented by an authentication class or configuration. If this property is empty, no authentication will be performed. Note that an auth method class must implement the yii\filters\auth\AuthInterface interface. public array $authMethods = []

mongodb\QueryBuilder explain()

explain() public method Generates 'explain' command. public array explain ( $collectionName, $query )$collectionName string Collection name. $query array Query options. return array Command document.

authclient\OAuth1 generateCommonRequestParams()

generateCommonRequestParams() protected method Generate common request params like version, timestamp etc. protected array generateCommonRequestParams ( )return array Common request params.

web\UrlManager buildRules()

buildRules() protected method Builds URL rule objects from the given rule declarations. protected yii\web\UrlRuleInterface[] buildRules ( $rules )$rules array The rule declarations. Each array element represents a single rule declaration. Please refer to $rules for the acceptable rule formats. return yii\web\UrlRuleInterface[] The rule objects built from the given rule declarations throws yii\base\InvalidConfigException if a rule declaration is invalid

sphinx\ActiveRecord deleteAll()

deleteAll() public static method Deletes rows in the index using the provided conditions. For example, to delete all articles whose status is 3: Article::deleteAll('status = 3'); public static integer deleteAll ( $condition = '', $params = [] )$condition string|array The conditions that will be put in the WHERE part of the DELETE SQL. Please refer to yii\sphinx\Query::where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query.

web\Response getIsNotFound()

getIsNotFound() public method public boolean getIsNotFound ( )return boolean Whether this response indicates the currently requested resource is not found

base\Module setInstance()

setInstance() public static method Sets the currently requested instance of this module class. public static void setInstance ( $instance )$instance yii\base\Module|null The currently requested instance of this module class. If it is null, the instance of the calling class will be removed, if any.

debug\panels\DbPanel save()

save() public method Saves data to be later used in debugger detail view. This method is called on every page where debugger is enabled. public mixed save ( )return mixed Data to be saved