Phalcon\Db\Adapter\MongoDB\Model\CollectionInfo::getCappedSize PHP 메소드

getCappedSize() 공개 메소드

Return the maximum size (in bytes) of the capped collection.
public getCappedSize ( ) : integer | null
리턴 integer | null
    public function getCappedSize()
    {
        return isset($this->info['options']['size']) ? (int) $this->info['options']['size'] : null;
    }