codeception\TestCase __get()

__get() public method Returns the value of an object property. Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $value = $object->property;. public mixed __get ( $name )$name string The property name return mixed The property value throws yii\base\UnknownPropertyException if the property is not defined

validators\DateValidator $timestampAttributeFormat

$timestampAttributeFormat public property (available since version 2.0.4) The format to use when populating the $timestampAttribute. The format can be specified in the same way as for $format. If not set, $timestampAttribute will receive a UNIX timestamp. If $timestampAttribute is not set, this property will be ignored. See also: $format $timestampAttribute public string $timestampAttributeFormat = null

mongodb\QueryBuilder buildHashCondition()

buildHashCondition() public method Creates a condition based on column-value pairs. public array buildHashCondition ( $condition )$condition array The condition specification. return array The generated Mongo condition.

base\Application getLog()

getLog() public method Returns the log dispatcher component. public yii\log\Dispatcher getLog ( )return yii\log\Dispatcher The log dispatcher application component.

web\CookieCollection getIterator()

getIterator() public method Returns an iterator for traversing the cookies in the collection. This method is required by the SPL interface IteratorAggregate. It will be implicitly called when you use foreach to traverse the collection. public ArrayIterator getIterator ( )return ArrayIterator An iterator for traversing the cookies in the collection.

web\HeaderCollection getCount()

getCount() public method Returns the number of headers in the collection. public integer getCount ( )return integer The number of headers in the collection.

gii\generators\controller\Generator $actions

$actions public property List of action IDs separated by commas or spaces public string $actions = 'index'

filters\AccessRule $matchCallback

$matchCallback public property A callback that will be called to determine if the rule should be applied. The signature of the callback should be as follows: function ($rule, $action) where $rule is this rule, and $action is the current action object. The callback should return a boolean value indicating whether this rule should be applied. public callable $matchCallback = null

captcha\CaptchaValidator clientValidateAttribute()

clientValidateAttribute() public method Returns the JavaScript needed for performing client-side validation. You may override this method to return the JavaScript validation code if the validator can support client-side validation. The following JavaScript variables are predefined and can be used in the validation code: attribute: an object describing the the attribute being validated. value: the value being validated. messages: an array used to hold the validation error messages for the

db\QueryTrait andFilterWhere()

andFilterWhere() public method Adds an additional WHERE condition to the existing one but ignores empty operands. The new condition and the existing one will be joined using the 'AND' operator. This method is similar to andWhere(). The main difference is that this method will remove empty query operands. As a result, this method is best suited for building query conditions based on filter values entered by users. See also: filterWhere() orFilterWhere() public $this andFilterWhere ( array