gii\generators\model\Generator $tablePrefix

$tablePrefix public read-only property public string getTablePrefix ( )

helpers\BaseConsole streamSupportsAnsiColors()

streamSupportsAnsiColors() public static method Returns true if the stream supports colorization. ANSI colors are disabled if not supported by the stream. windows without ansicon not tty consoles public static boolean streamSupportsAnsiColors ( $stream )$stream mixed return boolean True if the stream supports ANSI colors, otherwise false.

sphinx\gii\model\Generator $baseClass

$baseClass public property public $baseClass = 'yii\sphinx\ActiveRecord'

mongodb\debug\MongoDbPanel getQueryType()

getQueryType() protected method Returns database query type. protected string getQueryType ( $timing )$timing string Timing procedure string return string Query type such as select, insert, delete, etc.

web\Request $authPassword

$authPassword public read-only property The password sent via HTTP authentication, null if the password is not given public string|null getAuthPassword ( )

debug\Module checkAccess()

checkAccess() protected method Checks if current user is allowed to access the module protected boolean checkAccess ( )return boolean If access is granted

web\Response $formatters

$formatters public property The formatters for converting data into the response content of the specified $format. The array keys are the format names, and the array values are the corresponding configurations for creating the formatter objects. See also: $format defaultFormatters() public array $formatters = []

gii\CodeFile __construct()

__construct() public method Constructor. public void __construct ( $path, $content, $config = [] )$path string The file path that the new code should be saved to. $content string The newly generated code content. $config array Name-value pairs that will be used to initialize the object properties

mongodb\BatchQueryResult valid()

valid() public method Returns whether there is a valid dataset at the current position. This method is required by the interface Iterator. public boolean valid ( )return boolean Whether there is a valid dataset at the current position.

db\sqlite\QueryBuilder renameColumn()

renameColumn() public method Builds a SQL statement for renaming a column. public string renameColumn ( $table, $oldName, $newName )$table string The table whose column is to be renamed. The name will be properly quoted by the method. $oldName string The old name of the column. The name will be properly quoted by the method. $newName string The new name of the column. The name will be properly quoted by the method. return string The SQL statement for renaming a DB column. throws y