Flarum\Api\Serializer\AbstractSerializer::getRelationship PHP 메소드

getRelationship() 공개 메소드

public getRelationship ( $model, $name )
    public function getRelationship($model, $name)
    {
        if ($relationship = $this->getCustomRelationship($model, $name)) {
            return $relationship;
        }
        return parent::getRelationship($model, $name);
    }