mongodb\console\controllers\MigrateController options()

options() public method Returns the names of valid options for the action (id) An option requires the existence of a public member variable whose name is the option name. Child classes may override this method to specify possible options. Note that the values setting via options are not available until beforeAction() is being called. public array options ( $actionID )$actionID string The action id of the current request return array The names of the options valid for the action

log\DbTarget $logTable

$logTable public property Name of the DB table to store cache content. Defaults to "log". public string $logTable = '{{%log}}'

caching\ApcCache getValues()

getValues() protected method Retrieves multiple values from cache with the specified keys. protected array getValues ( $keys )$keys array A list of keys identifying the cached values return array A list of cached values indexed by the keys

validators\DateValidator parseDateValue()

parseDateValue() protected method Parses date string into UNIX timestamp protected integer|false parseDateValue ( $value )$value string String representing date return integer|false A UNIX timestamp or false on failure.

web\MultipartFormDataParser $uploadFileMaxCount

$uploadFileMaxCount public property Maximum upload files count. public integer getUploadFileMaxCount ( )public void setUploadFileMaxCount ( $uploadFileMaxCount )

helpers\BaseConsole clearLineAfterCursor()

clearLineAfterCursor() public static method Clears text from cursor position to the end of the line by sending ANSI control code EL with argument 0 to the terminal. Cursor position will not be changed. public static void clearLineAfterCursor ( )

caching\FileDependency generateDependencyData()

generateDependencyData() protected method Generates the data needed to determine if dependency has been changed. This method returns the file's last modification time. protected mixed generateDependencyData ( $cache )$cache yii\caching\Cache The cache component that is currently evaluating this dependency return mixed The data needed to determine if dependency has been changed. throws yii\base\InvalidConfigException if $fileName is not set

validators\NumberValidator validateAttribute()

validateAttribute() public method Validates a single attribute. Child classes must implement this method to provide the actual validation logic. public void validateAttribute ( $model, $attribute )$model yii\base\Model The data model to be validated $attribute string The name of the attribute to be validated.

caching\FileCache getCacheFile()

getCacheFile() protected method Returns the cache file path given the cache key. protected string getCacheFile ( $key )$key string Cache key return string The cache file path

web\Request $scriptUrl

$scriptUrl public property The relative URL of the entry script. public string getScriptUrl ( )public void setScriptUrl ( $value )