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