Completed
Push — master ( eea4af...ac3565 )
by Alexandr
13:12
created
Tests/Issues/Issue116/Issue116Test.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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' => [
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
                                             'args'    => [
33 33
                                                 'size' => new NonNullType(new IntType()),
34 34
                                             ],
35
-                                            'resolve' => function ($source, $args) {
35
+                                            'resolve' => function($source, $args) {
36 36
                                                 $res = [];
37 37
                                                 foreach (range(1, $args['size']) as $i) {
38
-                                                    $res[] = 'Cursor #' . $i;
38
+                                                    $res[] = 'Cursor #'.$i;
39 39
                                                 }
40 40
 
41 41
                                                 return $res;
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
                         'args'    => [
49 49
                             'first' => new IntType(),
50 50
                         ],
51
-                        'resolve' => function () {
51
+                        'resolve' => function() {
52 52
                             return [
53 53
                                 'pageInfo' => [
54 54
                                     'totalEdges' => 10,
Please login to merge, or discard this patch.
Tests/Issues/Issue131/Issue131Test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     {
20 20
 
21 21
 
22
-        $schema    = new Schema([
22
+        $schema = new Schema([
23 23
             'query'    => new ObjectType([
24 24
                 'name'   => 'RootQuery',
25 25
                 'fields' => [
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                                 ]
48 48
                             ]))
49 49
                         ],
50
-                        'resolve' => function ($source, $args) {
50
+                        'resolve' => function($source, $args) {
51 51
                             return [
52 52
                                 'id' => '1',
53 53
                                 'name' => sprintf('Meeting with %d beans', count($args['related_beans'])),
Please login to merge, or discard this patch.
src/Type/InputObject/AbstractInputObjectType.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         }
55 55
 
56 56
         $typeConfig     = $this->getConfig();
57
-        $requiredFields = array_filter($typeConfig->getFields(), function (FieldInterface $field) {
57
+        $requiredFields = array_filter($typeConfig->getFields(), function(FieldInterface $field) {
58 58
             return $field->getType()->getKind() == TypeMap::KIND_NON_NULL;
59 59
         });
60 60
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     public function parseValue($value)
88 88
     {
89 89
         if (is_null($value)) return null;
90
-        if($value instanceof InputObject) {
90
+        if ($value instanceof InputObject) {
91 91
             $value = $value->getValue();
92 92
         }
93 93
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,9 @@
 block discarded – undo
86 86
 
87 87
     public function parseValue($value)
88 88
     {
89
-        if (is_null($value)) return null;
89
+        if (is_null($value)) {
90
+            return null;
91
+        }
90 92
         if($value instanceof InputObject) {
91 93
             $value = $value->getValue();
92 94
         }
Please login to merge, or discard this patch.
examples/04_bookstore/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 }
11 11
 if ($_SERVER['REQUEST_URI'] == '/graphiql.css') {
12 12
     header('Content-Type: text/css');
13
-    readfile(__DIR__ . '/../GraphiQL/graphiql.css');
13
+    readfile(__DIR__.'/../GraphiQL/graphiql.css');
14 14
     die();
15 15
 }
16 16
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 use Youshido\GraphQL\Execution\Processor;
19 19
 use Youshido\GraphQL\Schema\Schema;
20 20
 
21
-require_once __DIR__ . '/schema-bootstrap.php';
21
+require_once __DIR__.'/schema-bootstrap.php';
22 22
 /** @var Schema $schema */
23 23
 $schema = new BookStoreSchema();
24 24
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 $variables = isset($requestData['variables']) ? $requestData['variables'] : null;
36 36
 
37 37
 if (empty($payload)) {
38
-    $GraphiQLData = file_get_contents(__DIR__ . '/../GraphiQL/index.html');
38
+    $GraphiQLData = file_get_contents(__DIR__.'/../GraphiQL/index.html');
39 39
     echo $GraphiQLData;
40 40
     die();
41 41
 }
Please login to merge, or discard this patch.
examples/04_bookstore/schema-bootstrap.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (is_file(__DIR__ . '/../../../../../vendor/autoload.php')) {
4
-    require_once __DIR__ . '/../../../../../vendor/autoload.php';
3
+if (is_file(__DIR__.'/../../../../../vendor/autoload.php')) {
4
+    require_once __DIR__.'/../../../../../vendor/autoload.php';
5 5
 }
6
-require_once __DIR__ . '/../../vendor/autoload.php';
7
-require_once __DIR__ . '/Schema/Type/BookType.php';
8
-require_once __DIR__ . '/Schema/Type/AuthorType.php';
9
-require_once __DIR__ . '/Schema/Field/Book/RecentBooksField.php';
10
-require_once __DIR__ . '/DataProvider.php';
11
-require_once __DIR__ . '/Schema/BookStoreSchema.php';
6
+require_once __DIR__.'/../../vendor/autoload.php';
7
+require_once __DIR__.'/Schema/Type/BookType.php';
8
+require_once __DIR__.'/Schema/Type/AuthorType.php';
9
+require_once __DIR__.'/Schema/Field/Book/RecentBooksField.php';
10
+require_once __DIR__.'/DataProvider.php';
11
+require_once __DIR__.'/Schema/BookStoreSchema.php';
Please login to merge, or discard this patch.