File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ private static function disArrayArguments($array)
120120 return $ str ;
121121 }
122122
123- private static function arrayAssociative ($ array ) {
123+ private static function arrayAssociative ($ array )
124+ {
124125 if (array_keys ($ array ) !== range (0 , count ($ array ) - 1 )) {
125126 return true ;
126127 } else {
Original file line number Diff line number Diff line change 55class Mutation extends Builder
66{
77 private $ name = '' ;
8- const TYPE = 'mutation ' ;
98 private $ select = [];
109 private $ arguments = [];
1110
11+ const TYPE = 'mutation ' ;
12+
1213 public function __construct ($ name )
1314 {
1415 $ this ->name = $ name ;
Original file line number Diff line number Diff line change 55class Query extends Builder
66{
77 private $ name = '' ;
8- const TYPE = 'query ' ;
98 private $ select = [];
109 private $ arguments = [];
1110
11+ const TYPE = 'query ' ;
12+
1213 public function __construct ($ name )
1314 {
1415 $ this ->name = $ name ;
You can’t perform that action at this time.
0 commit comments