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;
    }