@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | } |
| 10 | 10 | if ($_SERVER['REQUEST_URI'] == '/graphiql.css') { |
| 11 | 11 | header('Content-Type: text/css'); |
| 12 | - readfile(__DIR__ . '/../GraphiQL/graphiql.css'); |
|
| 12 | + readfile(__DIR__.'/../GraphiQL/graphiql.css'); |
|
| 13 | 13 | die(); |
| 14 | 14 | } |
| 15 | 15 | |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | use Youshido\GraphQL\Execution\Processor; |
| 18 | 18 | use Youshido\GraphQL\Schema\Schema; |
| 19 | 19 | |
| 20 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
| 20 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
| 21 | 21 | /** @var Schema $schema */ |
| 22 | 22 | $schema = new StarWarsRelaySchema(); |
| 23 | 23 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $variables = isset($requestData['variables']) ? $requestData['variables'] : null; |
| 35 | 35 | |
| 36 | 36 | if (empty($payload)) { |
| 37 | - $GraphiQLData = file_get_contents(__DIR__ . '/../GraphiQL/index.html'); |
|
| 37 | + $GraphiQLData = file_get_contents(__DIR__.'/../GraphiQL/index.html'); |
|
| 38 | 38 | echo $GraphiQLData; |
| 39 | 39 | die(); |
| 40 | 40 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | $processor->processPayload($this->getIntrospectionQuery(), []); |
| 14 | 14 | $resp = $processor->getResponseData(); |
| 15 | 15 | |
| 16 | - $enumTypes = array_filter($resp['data']['__schema']['types'], function($type){ |
|
| 16 | + $enumTypes = array_filter($resp['data']['__schema']['types'], function($type) { |
|
| 17 | 17 | return ($type['kind'] === 'ENUM'); |
| 18 | 18 | }); |
| 19 | 19 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | $unionType = new UnionType([ |
| 33 | 33 | 'name' => 'Union', |
| 34 | 34 | 'types' => [$type1, $type2], |
| 35 | - 'resolveType' => function ($value) use ($type1, $type2) { |
|
| 35 | + 'resolveType' => function($value) use ($type1, $type2) { |
|
| 36 | 36 | if (isset($value['name'])) { |
| 37 | 37 | return $type1; |
| 38 | 38 | } |
@@ -41,13 +41,13 @@ discard block |
||
| 41 | 41 | }, |
| 42 | 42 | ]); |
| 43 | 43 | |
| 44 | - $schema = new Schema([ |
|
| 44 | + $schema = new Schema([ |
|
| 45 | 45 | 'query' => new ObjectType([ |
| 46 | 46 | 'name' => 'RootQuery', |
| 47 | 47 | 'fields' => [ |
| 48 | 48 | 'list' => [ |
| 49 | 49 | 'type' => new ListType($unionType), |
| 50 | - 'resolve' => function () { |
|
| 50 | + 'resolve' => function() { |
|
| 51 | 51 | return [ |
| 52 | 52 | [ |
| 53 | 53 | 'id' => 1, |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | public function testInternalVariableArgument() |
| 17 | 17 | { |
| 18 | - $schema = new Schema([ |
|
| 18 | + $schema = new Schema([ |
|
| 19 | 19 | 'query' => new ObjectType([ |
| 20 | 20 | 'name' => 'RootQuery', |
| 21 | 21 | 'fields' => [ |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | ])), |
| 37 | 37 | ], |
| 38 | 38 | ]), |
| 39 | - 'resolve' => function () { |
|
| 39 | + 'resolve' => function() { |
|
| 40 | 40 | return [ |
| 41 | 41 | 'id' => 1, |
| 42 | 42 | 'name' => 'John', |