@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Youshido\Tests\Issues\Issue116Test; |
| 15 | 15 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | ])), |
| 47 | 47 | ], |
| 48 | 48 | ]), |
| 49 | - 'resolve' => static function () { |
|
| 49 | + 'resolve' => static function() { |
|
| 50 | 50 | return [ |
| 51 | 51 | 'id' => 1, |
| 52 | 52 | 'name' => 'John', |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Youshido\Tests\Issues\Issue116Test; |
| 15 | 15 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | ], |
| 54 | 54 | ])), |
| 55 | 55 | ], |
| 56 | - 'resolve' => static function ($source, $args) { |
|
| 56 | + 'resolve' => static function($source, $args) { |
|
| 57 | 57 | return [ |
| 58 | 58 | 'id' => '1', |
| 59 | 59 | 'name' => \sprintf('Meeting with %d beans', \count($args['related_beans'])), |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Youshido\Tests\Issues\Issue99; |
| 15 | 15 | |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Youshido\Tests\Issues\Issue99; |
| 15 | 15 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | ])), |
| 52 | 52 | ], |
| 53 | 53 | ], |
| 54 | - 'resolve' => static function ($source, $args) { |
|
| 54 | + 'resolve' => static function($source, $args) { |
|
| 55 | 55 | $x = $args['argX']['x'] ?? Issue99Test::BUG_EXISTS_VALUE; |
| 56 | 56 | |
| 57 | 57 | return [ |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | 'args' => [ |
| 65 | 65 | 'example' => new StringType(), |
| 66 | 66 | ], |
| 67 | - 'resolve' => static function () { |
|
| 67 | + 'resolve' => static function() { |
|
| 68 | 68 | return [ |
| 69 | 69 | ['id' => 1], |
| 70 | 70 | ['id' => 2], |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Youshido\Tests\Issues\Issue171; |
| 15 | 15 | |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Youshido\Tests\Issues\Issue171; |
| 15 | 15 | |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $processor->processPayload($this->getIntrospectionQuery(), []); |
| 26 | 26 | $resp = $processor->getResponseData(); |
| 27 | 27 | |
| 28 | - $enumTypes = \array_filter($resp['data']['__schema']['types'], static function ($type) { |
|
| 28 | + $enumTypes = \array_filter($resp['data']['__schema']['types'], static function($type) { |
|
| 29 | 29 | return 'ENUM' === $type['kind']; |
| 30 | 30 | }); |
| 31 | 31 | |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | /* |
| 14 | 14 | * This file is a part of GraphQL project. |
| 15 | 15 | * |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | /** |
| 14 | 14 | * Date: 13.05.16. |
| 15 | 15 | */ |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * http://opensource.org/licenses/MIT |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | /** |
| 14 | 14 | * Date: 01.12.15. |
| 15 | 15 | */ |
@@ -920,7 +920,7 @@ discard block |
||
| 920 | 920 | private function tokenizeStringContents($graphQLString) |
| 921 | 921 | { |
| 922 | 922 | $parser = new TokenizerTestingParser(); |
| 923 | - $parser->initTokenizerForTesting('"' . $graphQLString . '"'); |
|
| 923 | + $parser->initTokenizerForTesting('"'.$graphQLString.'"'); |
|
| 924 | 924 | |
| 925 | 925 | return $parser->getTokenForTesting(); |
| 926 | 926 | } |