mongodb\BatchQueryResult reset()

reset() public method Resets the batch query. This method will clean up the existing batch query so that a new batch query can be performed. public void reset ( )

data\Sort $separator

$separator public property The character used to separate different attributes that need to be sorted by. public string $separator = ','

bootstrap\NavBar init()

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

elasticsearch\DebugAction $controller

$controller public property public yii\debug\controllers\DefaultController $controller = null

authclient\clients\LinkedIn $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://api.linkedin.com/v1'

rbac\Assignment $userId

$userId public property User ID (see yii\web\User::$id) public string|integer $userId = null

gii\console\GenerateController $module

$module public property public yii\gii\Module $module = null

mongodb\debug\MongoDbPanel getSummaryName()

getSummaryName() public method public string getSummaryName ( )return string Short name of the panel, which will be use in summary.

elasticsearch\Connection put()

put() public method Performs PUT HTTP request public mixed put ( $url, $options = [], $body = null, $raw = false )$url string|array URL $options array URL options $body string Request body $raw boolean If response body contains JSON and should be decoded return mixed Response throws yii\elasticsearch\Exception throws yii\base\InvalidConfigException

db\Query batch()

batch() public method Starts a batch query. A batch query supports fetching data in batches, which can keep the memory usage under a limit. This method will return a yii\db\BatchQueryResult object which implements the Iterator interface and can be traversed to retrieve the data in batches. For example, $query = (new Query)->from('user'); foreach ($query->batch() as $rows) { // $rows is an array of 100 or fewer rows from user table } public yii\db\BatchQueryResult batch ( $batch