PhalconRest\Api::getCollection PHP Méthode

getCollection() public méthode

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