test\ActiveFixture load()

load() public method Loads the fixture. The default implementation will first clean up the table by calling resetTable(). It will then populate the table with the data returned by getData(). If you override this method, you should consider calling the parent implementation so that the data returned by getData() can be populated into the table. public void load ( )

validators\DateValidator $type

$type public property (available since version 2.0.8) The type of the validator. Indicates, whether a date, time or datetime value should be validated. This property influences the default value of $format and also sets the correct behavior when $format is one of the intl short formats, short, medium, long, or full. This is only effective when the PHP intl extension is installed. This property can be set to the following values: TYPE_DATE - (default) for validating date values only, that m

grid\Column $content

$content public property This is a callable that will be used to generate the content of each cell. The signature of the function should be the following: function ($model, $key, $index, $column). Where $model, $key, and $index refer to the model, key and index of the row currently being rendered and $column is a reference to the yii\grid\Column object. public callable $content = null

sphinx\QueryBuilder replace()

replace() public method Creates an REPLACE SQL statement. For example, $sql = $queryBuilder->replace('idx_user', [ 'name' => 'Sam', 'age' => 30, 'id' => 10, ], $params); The method will properly escape the index and column names. public string replace ( $index, $columns, &$params )$index string The index that new rows will be replaced. $columns array The column data (name => value) to be replaced in the index. $params array The binding parameters that

rest\Action $checkAccess

$checkAccess public property A PHP callable that will be called when running an action to determine if the current user has the permission to execute the action. If not set, the access check will not be performed. The signature of the callable should be as follows, function ($action, $model = null) { // $model is the requested model instance. // If null, it means no specific model (e.g. IndexAction) } public callable $checkAccess = null

rbac\Item $description

$description public property The item description public string $description = null

jui\Draggable run()

run() public method Renders the widget. public void run ( )

web\UrlManager $ruleConfig

$ruleConfig public property The default configuration of URL rules. Individual rule configurations specified via $rules will take precedence when the same property of the rule is configured. public array $ruleConfig = ['class' => 'yii\web\UrlRule']

sphinx\Query callSnippetsInternal()

callSnippetsInternal() protected method Builds a snippets from provided source data by the given index. protected array callSnippetsInternal ( array $source, $from )$source array The source data to extract a snippet from. $from string Name of the source index. return array Snippets list. throws yii\base\InvalidCallException in case match() is not specified.

rbac\Item $name

$name public property The name of the item. This must be globally unique. public string $name = null