Doctrine\ODM\MongoDB\CommandCursor::batchSize PHP Метод

batchSize() публичный Метод

Wrapper method for MongoCommandCursor::batchSize().
См. также: http://php.net/manual/en/mongocommandcursor.batchsize.php
public batchSize ( integer $num ) : self
$num integer
Результат self
    public function batchSize($num)
    {
        $this->commandCursor->batchSize($num);
        return $this;
    }