mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-02 20:26:09 +03:00
[style change] put VisitorOperation up top
This commit is contained in:
parent
80a662564e
commit
2e25f51829
1 changed files with 9 additions and 10 deletions
|
@ -4,6 +4,15 @@ namespace GraphQL\Language;
|
|||
use GraphQL\Language\AST\Node;
|
||||
use GraphQL\Utils\TypeInfo;
|
||||
|
||||
class VisitorOperation
|
||||
{
|
||||
public $doBreak;
|
||||
|
||||
public $doContinue;
|
||||
|
||||
public $removeNode;
|
||||
}
|
||||
|
||||
class Visitor
|
||||
{
|
||||
/**
|
||||
|
@ -446,13 +455,3 @@ class Visitor
|
|||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class VisitorOperation
|
||||
{
|
||||
public $doBreak;
|
||||
|
||||
public $doContinue;
|
||||
|
||||
public $removeNode;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue