captcha\CaptchaAction $width

$width public property The width of the generated CAPTCHA image. Defaults to 120. public integer $width = 120

base\Configurable

All Classes Implemented by yii\apidoc\commands\ApiController, yii\apidoc\commands\GuideController, yii\apidoc\components\BaseController, yii\apidoc\models\BaseDoc, yii\apidoc\models\ClassDoc, yii\apidoc\models\ConstDoc, yii\apidoc\models\Context, yii\apidoc\models\EventDoc, yii\apidoc\models\FunctionDoc, yii\apidoc\models\InterfaceDoc, yii\apidoc\models\MethodDoc, yii\apidoc\models\ParamDoc, yii\apidoc\models\PropertyDoc, yii\apidoc\models\TraitDoc, yii\apidoc\models\TypeDoc, yii\apidoc\rend

db\ColumnSchema $scale

$scale public property Scale of the column data, if it is numeric. public integer $scale = null

web\ErrorHandler renderCallStackItem()

renderCallStackItem() public method Renders a single call stack element. public string renderCallStackItem ( $file, $line, $class, $method, $args, $index )$file string|null Name where call has happened. $line integer|null Number on which call has happened. $class string|null Called class name. $method string|null Called function/method name. $args array Array of method arguments. $index integer Number of the call stack element. return string HTML content of the render

caching\WinCache getValue()

getValue() protected method Retrieves a value from cache with a specified key. This is the implementation of the method declared in the parent class. protected string|boolean getValue ( $key )$key string A unique key identifying the cached value return string|boolean The value stored in cache, false if the value is not in the cache or expired.

elasticsearch\Command $options

$options public property Options to be appended to the query URL, such as "search_type" for search or "timeout" for delete public array $options = []

db\BaseActiveRecord populateRelation()

populateRelation() public method Populates the named relation with the related records. Note that this method does not check if the relation exists or not. See also getRelation(). public void populateRelation ( $name, $records )$name string The relation name, e.g. orders for a relation defined via getOrders() method (case-sensitive). $records yii\db\ActiveRecordInterface|array|null The related records to be populated into the relation.

db\Schema getTableSchemas()

getTableSchemas() public method Returns the metadata for all tables in the database. public yii\db\TableSchema[] getTableSchemas ( $schema = '', $refresh = false )$schema string The schema of the tables. Defaults to empty string, meaning the current or default schema name. $refresh boolean Whether to fetch the latest available table schemas. If this is false, cached data may be returned if available. return yii\db\TableSchema[] The metadata for all tables in the database. Each array

elasticsearch\Connection init()

init() public method public void init ( )

test\Fixture unload()

unload() public method Unloads the fixture. This method is called after every test method finishes. You may override this method to perform necessary cleanup work for the fixture. public void unload ( )