Phalcon\Db\Adapter\MongoDB\Model\CollectionInfo::getCappedMax PHP Метод

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

Return the maximum number of documents to keep in the capped collection.
public getCappedMax ( ) : integer | null
Результат integer | null
    public function getCappedMax()
    {
        return isset($this->info['options']['max']) ? (int) $this->info['options']['max'] : null;
    }