validators\DateValidator $timestampAttribute

$timestampAttribute public property The name of the attribute to receive the parsing result. When this property is not null and the validation is successful, the named attribute will receive the parsing result. This can be the same attribute as the one being validated. If this is the case, the original value will be overwritten with the timestamp value after successful validation. Note, that when using this property, the input value will be converted to a unix timestamp, which by definition

elasticsearch\ElasticsearchTarget $includeContext

$includeContext public property If true, context will be included in every message. This is convenient if you log application errors and analyze them with tools like Kibana. public boolean $includeContext = false

behaviors\AttributeTypecastBehavior $typecastAfterFind

$typecastAfterFind public property Whether to perform typecasting after retrieving owner model data from the database (after find or refresh). This option may be disabled in order to achieve better performance. For example, in case of yii\db\ActiveRecord usage, typecasting after find will grant no benefit in most cases an thus can be disabled. Note that changing this option value will have no effect after this behavior has been attached to the model. public boolean $typecastAfterFind = fal

db\Query each()

each() public method Starts a batch query and retrieves data row by row. This method is similar to batch() except that in each iteration of the result, only one row of data is returned. For example, $query = (new Query)->from('user'); foreach ($query->each() as $row) { } public yii\db\BatchQueryResult each ( $batchSize = 100, $db = null )$batchSize integer The number of records to be fetched in each batch. $db yii\db\Connection The database connection. If not set, the "db" appli

redis\Cache getValue()

getValue() protected method Retrieves a value from cache with a specified key. This method should be implemented by child classes to retrieve the data from specific cache storage. protected mixed|false getValue ( $key )$key string A unique key identifying the cached value return mixed|false The value stored in cache, false if the value is not in the cache or expired. Most often value is a string. If you have disabled $serializer, it could be something else.

behaviors\AttributeBehavior $attributes

$attributes public property List of attributes that are to be automatically filled with the value specified via $value. The array keys are the ActiveRecord events upon which the attributes are to be updated, and the array values are the corresponding attribute(s) to be updated. You can use a string to represent a single attribute, or an array to represent a list of attributes. For example, [ ActiveRecord::EVENT_BEFORE_INSERT => ['attribute1', 'attribute2'], ActiveRecord::EVENT_BE

swiftmailer\Message setBcc()

setBcc() public method Sets the Bcc (hidden copy receiver) addresses of this message. public $this setBcc ( $bcc )$bcc string|array Hidden copy receiver email address. You may pass an array of addresses if multiple recipients should receive this message. You may also specify receiver name in addition to email address using format: [email => name]. return $this Self reference.

base\Model validate()

validate() public method Performs the data validation. This method executes the validation rules applicable to the current $scenario. The following criteria are used to determine whether a rule is currently applicable: the rule must be associated with the attributes relevant to the current scenario; the rules must be effective for the current scenario. This method will call beforeValidate() and afterValidate() before and after the actual validation, respectively. If beforeValidate() returns

web\UrlManager getScriptUrl()

getScriptUrl() public method Returns the entry script URL that is used by createUrl() to prepend to created URLs. It defaults to yii\web\Request::$scriptUrl. This is mainly used when $enablePrettyUrl is false or $showScriptName is true. public string getScriptUrl ( )return string The entry script URL that is used by createUrl() to prepend to created URLs. throws yii\base\InvalidConfigException if running in console application and $scriptUrl is not configured.

console\controllers\CacheController actionFlushSchema()

actionFlushSchema() public method (available since version 2.0.1) Clears DB schema cache for a given connection component. # clears cache schema specified by component id: "db" yii cache/flush-schema db public integer actionFlushSchema ( $db = 'db' )$db string Id connection component return integer Exit code throws yii\console\Exception throws yii\base\InvalidConfigException