Completed
Pull Request — master (#204)
by Ryan
11:34
created
src/Execution/DeferredResolverInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
  */
Please login to merge, or discard this patch.
src/Execution/Context/ExecutionContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
  *
Please login to merge, or discard this patch.
src/Execution/Context/ExecutionContextInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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: 5/20/16.
15 15
  */
Please login to merge, or discard this patch.
src/Execution/DeferredResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
  */
Please login to merge, or discard this patch.
src/Directive/Directive.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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: 3/17/17.
15 15
  */
Please login to merge, or discard this patch.
src/Directive/DirectiveInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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: 3/17/17.
15 15
  */
Please login to merge, or discard this patch.
src/Directive/DirectiveLocation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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: 3/24/17.
15 15
  */
Please login to merge, or discard this patch.
src/Relay/RelayMutation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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: 17.05.16.
15 15
  */
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                 new InputField([
50 50
                     'name' => 'input',
51 51
                     'type' => new NonNullType(new InputObjectType([
52
-                        'name'   => \ucfirst($name) . 'Input',
52
+                        'name'   => \ucfirst($name).'Input',
53 53
                         'fields' => \array_merge(
54 54
                             $args,
55 55
                             [new InputField(['name' => 'clientMutationId', 'type' => new NonNullType(new StringType())])]
@@ -62,9 +62,9 @@  discard block
 block discarded – undo
62 62
                     $output,
63 63
                     [new Field(['name' => 'clientMutationId', 'type' => new NonNullType(new StringType())])]
64 64
                 ),
65
-                'name' => \ucfirst($name) . 'Payload',
65
+                'name' => \ucfirst($name).'Payload',
66 66
             ]),
67
-            'resolve' => static function ($value, $args, ResolveInfo $info) use ($resolveFunction) {
67
+            'resolve' => static function($value, $args, ResolveInfo $info) use ($resolveFunction) {
68 68
                 $resolveValue = $resolveFunction($value, $args['input'], $args, $info);
69 69
 
70 70
                 if (\is_object($resolveValue)) {
Please login to merge, or discard this patch.
src/Relay/Type/PageInfoType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
  */
Please login to merge, or discard this patch.