Ouzo\Relations::getRelation PHP Method

getRelation() public method

public getRelation ( $name ) : Relation
$name
return Ouzo\Db\Relation
    public function getRelation($name)
    {
        if (!isset($this->_relations[$name])) {
            throw new InvalidArgumentException("{$this->modelClass} has no relation: {$name}");
        }
        return $this->_relations[$name];
    }