mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-03 04:33:31 +03:00
Fixed missing cleanup in TypeInfo::leave
This commit is contained in:
parent
a881d15e6b
commit
b2b08f2a07
1 changed files with 4 additions and 0 deletions
|
@ -258,7 +258,11 @@ class TypeInfo
|
|||
array_pop($this->_typeStack);
|
||||
break;
|
||||
case Node::VARIABLE_DEFINITION:
|
||||
array_pop($this->_inputTypeStack);
|
||||
break;
|
||||
case Node::ARGUMENT:
|
||||
array_pop($this->_inputTypeStack);
|
||||
break;
|
||||
case Node::DIRECTIVE:
|
||||
case Node::ARR:
|
||||
case Node::OBJECT_FIELD:
|
||||
|
|
Loading…
Add table
Reference in a new issue