Locker\Repository\Statement\EloquentLinker::fetchUpRefs PHP 메소드

fetchUpRefs() 개인적인 메소드

Gets the statements referencing the given statement from the database
private fetchUpRefs ( stdClass $statement, StoreOptions $opts ) : [\stdClass]
$statement stdClass
$opts StoreOptions
리턴 [\stdClass]
    private function fetchUpRefs(\stdClass $statement, StoreOptions $opts)
    {
        return $this->where($opts)->where('statement.object.id', $statement->id)->where('statement.object.objectType', 'StatementRef')->get();
    }