mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 13:13:30 +03:00
Fix: fatal Call to a member function getLocation(), before normal error is thrown
This commit is contained in:
parent
f1fc5d66c9
commit
b36caceade
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ class Error extends \Exception implements \JsonSerializable, ClientAware
|
|||
}, $positions);
|
||||
} else if ($nodes) {
|
||||
$this->locations = array_filter(array_map(function ($node) {
|
||||
if ($node->loc) {
|
||||
if ($node->loc && $node->loc->source) {
|
||||
return $node->loc->source->getLocation($node->loc->start);
|
||||
}
|
||||
}, $nodes));
|
||||
|
|
Loading…
Add table
Reference in a new issue