mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 13:13:30 +03:00
Minor instanceof tweak
This commit is contained in:
parent
22e41a3729
commit
61245213c4
1 changed files with 7 additions and 3 deletions
|
@ -135,7 +135,7 @@ class Values
|
|||
* runtime values of query variables.
|
||||
*
|
||||
* @param $value
|
||||
* @param Type $type
|
||||
* @param InputType $type
|
||||
* @return array
|
||||
*/
|
||||
private static function isValidPHPValue($value, InputType $type)
|
||||
|
@ -258,7 +258,11 @@ class Values
|
|||
return $obj;
|
||||
|
||||
}
|
||||
Utils::invariant($type instanceof ScalarType || $type instanceof EnumType, 'Must be input type');
|
||||
return $type->parseValue($value);
|
||||
|
||||
if ($type instanceof LeafType) {
|
||||
return $type->parseValue($value);
|
||||
}
|
||||
|
||||
throw new InvariantViolation('Must be input type');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue