base\Application $charset

$charset public property The charset currently used for the application. public string $charset = 'UTF-8'

mongodb\Query column()

column() public method (available since version 2.1.2) Executes the query and returns the first column of the result. Column _id will be automatically excluded from select fields, if select() is not empty and _id is not selected explicitly. public array column ( $db = null )$db yii\mongodb\Connection The MongoDB connection used to generate the query. If this parameter is not given, the mongodb application component will be used. return array The first column of the query result. An emp

mongodb\BatchQueryResult $batchSize

$batchSize public property The number of rows to be returned in each batch. public integer $batchSize = 100

debug\panels\RequestPanel getName()

getName() public method public string getName ( )return string Name of the panel

mongodb\BatchQueryResult key()

key() public method Returns the index of the current dataset. This method is required by the interface Iterator. public integer key ( )return integer The index of the current row.

test\ArrayFixture $dataFile

$dataFile public property The file path or path alias of the data file that contains the fixture data to be returned by getData(). You can set this property to be false to prevent loading any data. public string|boolean $dataFile = null

base\Widget end()

end() public static method Ends a widget. Note that the rendering result of the widget is directly echoed out. See also begin(). public static static end ( )return static The widget instance that is ended. throws yii\base\InvalidCallException if begin() and end() calls are not properly nested

base\ErrorHandler handleFallbackExceptionMessage()

handleFallbackExceptionMessage() protected method (available since version 2.0.11) Handles exception thrown during exception processing in handleException(). protected void handleFallbackExceptionMessage ( $exception, $previousException )$exception Exception|\Throwable Exception that was thrown during main exception processing. $previousException Exception Main exception processed in handleException().

mongodb\QueryBuilder buildAndCondition()

buildAndCondition() public method Connects two or more conditions with the AND operator. public array buildAndCondition ( $operator, $operands )$operator string The operator to use for connecting the given operands $operands array The Mongo conditions to connect. return array The generated Mongo condition.

db\BaseActiveRecord isRelationPopulated()

isRelationPopulated() public method Check whether the named relation has been populated with records. See also getRelation(). public boolean isRelationPopulated ( $name )$name string The relation name, e.g. orders for a relation defined via getOrders() method (case-sensitive). return boolean Whether relation has been populated with records.