Skip to content

Commit

Permalink
Merge 8964ff4 into 65428ce
Browse files Browse the repository at this point in the history
  • Loading branch information
4n70w4 committed Mar 26, 2021
2 parents 65428ce + 8964ff4 commit 9e9d20c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Executor/ReferenceExecutor.php
Expand Up @@ -58,7 +58,7 @@ class ReferenceExecutor implements ExecutorImplementation
private static $UNDEFINED;

/** @var ExecutionContext */
private $exeContext;
protected $exeContext;

/** @var SplObjectStorage */
private $subFieldCache;
Expand Down Expand Up @@ -116,7 +116,7 @@ public function doExecute() : Promise
};
}

return new self($exeContext);
return new static($exeContext);
}

/**
Expand Down Expand Up @@ -604,7 +604,7 @@ private function getFieldDef(Schema $schema, ObjectType $parentType, string $fie
*
* @return Throwable|Promise|mixed
*/
private function resolveFieldValueOrError(
protected function resolveFieldValueOrError(
FieldDefinition $fieldDef,
FieldNode $fieldNode,
callable $resolveFn,
Expand Down

0 comments on commit 9e9d20c

Please sign in to comment.