test\InitDbFixture $schemas

$schemas public property List of database schemas that the test tables may reside in. Defaults to [''], meaning using the default schema (an empty string refers to the default schema). This property is mainly used when turning on and off integrity checks so that fixture data can be populated into the database without causing problem. public array $schemas = ['']

helpers\BaseVarDumper export()

export() public static method Exports a variable as a string representation. The string is a valid PHP expression that can be evaluated by PHP parser and the evaluation result will give back the variable value. This method is similar to var_export(). The main difference is that it generates more compact string representation using short array syntax. It also handles objects by using the PHP functions serialize() and unserialize(). PHP 5.4 or above is required to parse the exported value.

helpers\BaseConsole beginAnsiFormat()

beginAnsiFormat() public static method Echoes an ANSI format code that affects the formatting of any text that is printed afterwards. See also: ansiFormatCode() endAnsiFormat() public static void beginAnsiFormat ( $format )$format array An array containing formatting values. You can pass any of the FG_*, BG_* and TEXT_* constants and also xtermFgColor() and xtermBgColor() to specify a format.

sphinx\ActiveQuery callSnippets()

callSnippets() protected method Builds a snippets from provided source data. protected array callSnippets ( array $source )$source array The source data to extract a snippet from. return array Snippets list. throws yii\base\InvalidCallException in case match() is not specified.

validators\CompareValidator validateAttribute()

validateAttribute() public method Validates a single attribute. Child classes must implement this method to provide the actual validation logic. public void validateAttribute ( $model, $attribute )$model yii\base\Model The data model to be validated $attribute string The name of the attribute to be validated.

web\ErrorHandler $errorView

$errorView public property The path of the view file for rendering exceptions without call stack information. public string $errorView = '@yii/views/errorHandler/error.php'

authclient\OAuth1 sendSignedRequest()

sendSignedRequest() protected method Sends HTTP request, signed by $signatureMethod. protected array sendSignedRequest ( $method, $url, array $params = [], array $headers = [] )$method string Request type. $url string Request URL. $params array Request params. $headers array Additional request headers. return array Response.

validators\ValidationAsset $depends

$depends public property public $depends = ['yii\web\YiiAsset']

base\Application getTimeZone()

getTimeZone() public method Returns the time zone used by this application. This is a simple wrapper of PHP function date_default_timezone_get(). If time zone is not configured in php.ini or application config, it will be set to UTC by default. See also http://php.net/manual/en/function.date-default-timezone-get.php. public string getTimeZone ( )return string The time zone used by this application.

authclient\AuthAction $cancelUrl

$cancelUrl public property Cancel URL. public string getCancelUrl ( )public void setCancelUrl ( $url )