Phalcon\Db\Adapter\MongoDB\Model\CollectionInfo::isCapped PHP Method

isCapped() public method

Return whether the collection is a capped collection.
public isCapped ( ) : boolean
return boolean
    public function isCapped()
    {
        return !empty($this->info['options']['capped']);
    }