mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
Fixed Parser docblock comments
This commit is contained in:
parent
83cc9132a0
commit
2bfce65484
@ -239,7 +239,7 @@ class Parser
|
||||
* @param int $openKind
|
||||
* @param callable $parseFn
|
||||
* @param int $closeKind
|
||||
* @return array
|
||||
* @return NodeList
|
||||
* @throws SyntaxError
|
||||
*/
|
||||
function any($openKind, $parseFn, $closeKind)
|
||||
@ -406,7 +406,7 @@ class Parser
|
||||
}
|
||||
|
||||
/**
|
||||
* @return VariableDefinitionNode[]
|
||||
* @return VariableDefinitionNode[]|NodeList
|
||||
*/
|
||||
function parseVariableDefinitions()
|
||||
{
|
||||
@ -509,7 +509,7 @@ class Parser
|
||||
}
|
||||
|
||||
/**
|
||||
* @return ArgumentNode[]
|
||||
* @return ArgumentNode[]|NodeList
|
||||
*/
|
||||
function parseArguments()
|
||||
{
|
||||
@ -754,7 +754,7 @@ class Parser
|
||||
// Implements the parsing rules in the Directives section.
|
||||
|
||||
/**
|
||||
* @return DirectiveNode[]
|
||||
* @return DirectiveNode[]|NodeList
|
||||
*/
|
||||
function parseDirectives()
|
||||
{
|
||||
@ -993,7 +993,7 @@ class Parser
|
||||
}
|
||||
|
||||
/**
|
||||
* @return InputValueDefinitionNode[]
|
||||
* @return InputValueDefinitionNode[]|NodeList
|
||||
*/
|
||||
function parseArgumentDefs()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user