From 2e25f51829d2204971f98f7b8d6acf6da5e92644 Mon Sep 17 00:00:00 2001 From: Andreas Heiberg Date: Thu, 10 Nov 2016 16:19:21 +0000 Subject: [PATCH] [style change] put VisitorOperation up top --- src/Language/Visitor.php | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/Language/Visitor.php b/src/Language/Visitor.php index 1b0e714..040b030 100644 --- a/src/Language/Visitor.php +++ b/src/Language/Visitor.php @@ -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; -}