db\mssql\PDO commit()

commit() public method Commits a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not natively support transactions. public boolean commit ( )return boolean The result of a transaction commit.

gii\generators\model\Generator $modelClass

$modelClass public property public $modelClass = null

web\UploadedFile getExtension()

getExtension() public method public string getExtension ( )return string File extension

console\controllers\MigrateController addMigrationHistory()

addMigrationHistory() protected method Adds new migration entry to the history. protected void addMigrationHistory ( $version )$version string Migration version name.

filters\AccessRule matchController()

matchController() protected method protected boolean matchController ( $controller )$controller yii\base\Controller The controller return boolean Whether the rule applies to the controller

log\Dispatcher setTraceLevel()

setTraceLevel() public method public void setTraceLevel ( $value )$value integer How many application call stacks should be logged together with each message. This method will set the value of yii\log\Logger::$traceLevel. If the value is greater than 0, at most that number of call stacks will be logged. Note that only application call stacks are counted. Defaults to 0.

console\controllers\BaseMigrateController actionMark()

actionMark() public method Modifies the migration history to the specified version. No actual migration will be performed. yii migrate/mark 101129_185401 # using timestamp yii migrate/mark m101129_185401_create_user_table # using full name yii migrate/to app\migrations\M101129185401CreateUser # using full namespace name public integer actionMark ( $version )$version string The version at which the migration history should be marked. This can be either the time

console\controllers\AssetController $jsCompressor

$jsCompressor public property JavaScript file compressor. If a string, it is treated as shell command template, which should contain placeholders {from} - source file name - and {to} - output file name. Otherwise, it is treated as PHP callback, which should perform the compression. Default value relies on usage of "Closure Compiler" See also https://developers.google.com/closure/compiler/. public string|callable $jsCompressor = 'java -jar compiler.jar --js {from} --js_output_file {to}'

console\controllers\BaseMigrateController $migrationPath

$migrationPath public property The directory containing the migration classes. This can be either a path alias or a directory path. If you have set up $migrationNamespaces, you may set this field to null in order to disable usage of migrations that are not namespaced. public string $migrationPath = '@app/migrations'

base\ErrorHandler logException()

logException() public method (available since version 2.0.3) Logs the given exception public void logException ( $exception )$exception Exception The exception to be logged