Flarum\Api\Serializer\AbstractSerializer::getRelationship PHP Method

getRelationship() public method

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