Locker\Repository\Statement\EloquentLinker::downRef PHP Метод

downRef() приватный Метод

Gets the statement referred to by the given statement.
private downRef ( stdClass $statement, StoreOptions $opts ) : Model
$statement stdClass
$opts StoreOptions
Результат Illuminate\Database\Eloquent\Model
    private function downRef(\stdClass $statement, StoreOptions $opts)
    {
        if (!$this->isReferencing($statement)) {
            return null;
        }
        return $this->getModel($statement->object->id, $opts);
    }