Fixed Parser docblock comments

This commit is contained in:
Vladimir Razuvaev 2017-08-18 02:55:22 +07:00
parent 83cc9132a0
commit 2bfce65484

View File

@ -239,7 +239,7 @@ class Parser
* @param int $openKind * @param int $openKind
* @param callable $parseFn * @param callable $parseFn
* @param int $closeKind * @param int $closeKind
* @return array * @return NodeList
* @throws SyntaxError * @throws SyntaxError
*/ */
function any($openKind, $parseFn, $closeKind) function any($openKind, $parseFn, $closeKind)
@ -406,7 +406,7 @@ class Parser
} }
/** /**
* @return VariableDefinitionNode[] * @return VariableDefinitionNode[]|NodeList
*/ */
function parseVariableDefinitions() function parseVariableDefinitions()
{ {
@ -509,7 +509,7 @@ class Parser
} }
/** /**
* @return ArgumentNode[] * @return ArgumentNode[]|NodeList
*/ */
function parseArguments() function parseArguments()
{ {
@ -754,7 +754,7 @@ class Parser
// Implements the parsing rules in the Directives section. // Implements the parsing rules in the Directives section.
/** /**
* @return DirectiveNode[] * @return DirectiveNode[]|NodeList
*/ */
function parseDirectives() function parseDirectives()
{ {
@ -993,7 +993,7 @@ class Parser
} }
/** /**
* @return InputValueDefinitionNode[] * @return InputValueDefinitionNode[]|NodeList
*/ */
function parseArgumentDefs() function parseArgumentDefs()
{ {