PhalconRest\Api::getCollection PHP 메소드

getCollection() 공개 메소드

public getCollection ( $name ) : ApiCollection | null
$name
리턴 PhalconRest\Api\ApiCollection | null
    public function getCollection($name)
    {
        return array_key_exists($name, $this->collectionsByName) ? $this->collectionsByName[$name] : null;
    }