Completed
Push — master ( 121747...dcf58a )
by Alexandr
02:37
created
examples/03_relay_star_wars/router.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Tests/Issues/Issue171/Issue171Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.