mongodb\file\Cursor __construct()

__construct() public method Constructor. public void __construct ( $collection, $cursor )$collection yii\mongodb\file\Collection $cursor \MongoDB\Driver\Cursor

twig\ViewRenderer $cachePath

$cachePath public property The directory or path alias pointing to where Twig cache will be stored. Set to false to disable templates cache. public string $cachePath = '@runtime/Twig/cache'

sphinx\QueryBuilder generateBatchInsertReplace()

generateBatchInsertReplace() protected method Generates a batch INSERT/REPLACE SQL statement. protected string generateBatchInsertReplace ( $statement, $index, $columns, $rows, &$params )$statement string Statement ot be generated. $index string The affected index name. $columns array The column data (name => value). $rows array The rows to be batch inserted into the index $params array The binding parameters that will be generated by this method. return string Generated

jui\Resizable init()

init() public method Initializes the widget. public void init ( )

codeception\BasePage $route

$route public property The route (controller ID and action ID, e.g. site/about) to this page. Use array to represent a route with GET parameters. The first element of the array represents the route and the rest of the name-value pairs are treated as GET parameters, e.g. array('site/page', 'name' => 'about'). public string|array $route = null

validators\EmailValidator init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

db\QueryBuilder hasOffset()

hasOffset() protected method Checks to see if the given offset is effective. protected boolean hasOffset ( $offset )$offset mixed The given offset return boolean Whether the offset is effective

console\controllers\MigrateController createMigration()

createMigration() protected method Creates a new migration instance. protected yii\db\Migration createMigration ( $class )$class string The migration class name return yii\db\Migration The migration instance

db\sqlite\QueryBuilder batchInsert()

batchInsert() public method Generates a batch INSERT SQL statement. For example, $connection->createCommand()->batchInsert('user', ['name', 'age'], [ ['Tom', 30], ['Jane', 20], ['Linda', 25], ])->execute(); Note that the values in each row must match the corresponding column names. public string batchInsert ( $table, $columns, $rows )$table string The table that new rows will be inserted into. $columns array The column names $rows array The rows to be batch inse

console\controllers\AssetController compressCssFiles()

compressCssFiles() protected method Compresses given CSS files and combines them into the single one. protected void compressCssFiles ( $inputFiles, $outputFile )$inputFiles array List of source file names. $outputFile string Output file name. throws yii\console\Exception on failure