validators\IpValidator $normalize

$normalize public property Whether to add the CIDR prefix with the smallest length (32 for IPv4 and 128 for IPv6) to an address without it. Works only when subnet is not false. For example: 10.0.1.5 will normalized to 10.0.1.5/32 2008:db0::1 will be normalized to 2008:db0::1/128 Defaults to false. See also $subnet. public boolean $normalize = false

gii\generators\controller\Generator $actions

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

rest\ActiveController $modelClass

$modelClass public property The model class name. This property must be set. public string $modelClass = null

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

console\controllers\FixtureController actionUnload()

actionUnload() public method Unloads the specified fixtures. For example, # unload the fixture data specified by User and UserProfile. yii fixture/unload "User, UserProfile" # unload all fixtures found under 'tests\unit\fixtures' yii fixture/unload "*" # unload all fixtures except User and UserProfile yii fixture/unload "*, -User, -UserProfile" public integer actionUnload ( array $fixturesInput = [] )$fixturesInput array return integer Return code throws yii\console\Exception if th

elasticsearch\ElasticsearchTarget $_contextMessage

$_contextMessage protected property Context message cache (can be used multiple times if context is appended to every message) protected string $_contextMessage = null

i18n\MessageSource loadMessages()

loadMessages() protected method Loads the message translation for the specified language and category. If translation for specific locale code such as en-US isn't found it tries more generic en. protected array loadMessages ( $category, $language )$category string The message category $language string The target language return array The loaded messages. The keys are original messages, and the values are translated messages.

test\Fixture $depends

$depends public property The fixtures that this fixture depends on. This must be a list of the dependent fixture class names. public array $depends = []

log\Logger $flushInterval

$flushInterval public property How many messages should be logged before they are flushed from memory and sent to targets. Defaults to 1000, meaning the flush() method will be invoked once every 1000 messages logged. Set this property to be 0 if you don't want to flush messages until the application terminates. This property mainly affects how much memory will be taken by the logged messages. A smaller value means less memory, but will increase the execution time due to the overhead of flus

authclient\BaseOAuth removeState()

removeState() protected method Removes persistent state value. protected boolean removeState ( $key )$key string State key. return boolean Success.