Completed
Pull Request — master (#204)
by Ryan
11:34
created
src/Introspection/DirectiveType.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: 16.12.15.
15 15
  */
Please login to merge, or discard this patch.
src/Introspection/QueryType.php 1 patch
Spacing   +2 added lines, -2 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: 03.12.15.
15 15
  */
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         }
97 97
 
98 98
         /* @var AbstractObjectType $value */
99
-        return \array_filter($value->getConfig()->getFields(), static function ($field) use ($args) {
99
+        return \array_filter($value->getConfig()->getFields(), static function($field) use ($args) {
100 100
             /** @var $field Field */
101 101
             if (\in_array($field->getName(), ['__type', '__schema'], true) || (!$args['includeDeprecated'] && $field->isDeprecated())) {
102 102
                 return false;
Please login to merge, or discard this patch.
src/Introspection/Field/TypesField.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: 16.05.16.
15 15
  */
Please login to merge, or discard this patch.
src/Introspection/Field/TypeDefinitionField.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: 03.12.15.
15 15
  */
Please login to merge, or discard this patch.
src/Introspection/Field/SchemaField.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: 16.05.16.
15 15
  */
Please login to merge, or discard this patch.
src/Introspection/InputValueType.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: 03.12.15.
15 15
  */
Please login to merge, or discard this patch.
Tests/StarWars/StarWarsTest.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: 07.12.15.
15 15
  */
Please login to merge, or discard this patch.
Tests/StarWars/Schema/StarWarsData.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: 07.12.15.
15 15
  */
Please login to merge, or discard this patch.
Tests/StarWars/Schema/HumanType.php 1 patch
Spacing   +2 added lines, -2 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: 07.12.15.
15 15
  */
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             ->addField('name', new NonNullType(new StringType()))
33 33
             ->addField('friends', [
34 34
                 'type'    => new ListType(new CharacterInterface()),
35
-                'resolve' => static function ($droid) {
35
+                'resolve' => static function($droid) {
36 36
                     return StarWarsData::getFriends($droid);
37 37
                 },
38 38
             ])
Please login to merge, or discard this patch.