Completed
Push — master ( 8484c4...f979a7 )
by Portey
03:07
created
Tests/Type/TypeMapTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
 
22 22
     public function testScalarTypeCheck()
23 23
     {
24
-        foreach($this->getScalarTypes() as $type) {
24
+        foreach ($this->getScalarTypes() as $type) {
25 25
             $this->assertTrue(TypeMap::isInputType($type));
26 26
         }
27 27
     }
28 28
 
29 29
     public function testScalarTypeObjectCreation()
30 30
     {
31
-        foreach($this->getScalarTypes() as $type) {
31
+        foreach ($this->getScalarTypes() as $type) {
32 32
             $object = TypeMap::getScalarTypeObject($type);
33 33
             $this->assertEquals($object->getKind(), TypeMap::KIND_SCALAR);
34 34
             $this->assertEquals($object->getName(), $type);
Please login to merge, or discard this patch.
src/Type/Object/AbstractInputObjectType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             return false;
38 38
         }
39 39
 
40
-        $requiredFields = array_filter($this->getConfig()->getFields(), function (Field $field) {
40
+        $requiredFields = array_filter($this->getConfig()->getFields(), function(Field $field) {
41 41
             return $field->getConfig()->isRequired();
42 42
         });
43 43
 
Please login to merge, or discard this patch.
src/Type/Config/Traits/FieldsAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function addFields($fieldsArray)
42 42
     {
43
-        foreach($fieldsArray as $fieldName => $fieldConfig) {
43
+        foreach ($fieldsArray as $fieldName => $fieldConfig) {
44 44
             if (is_object($fieldConfig)) {
45 45
                 $this->addField($fieldName, $fieldConfig);
46 46
             } else {
Please login to merge, or discard this patch.
src/Type/Config/Object/InterfaceTypeConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $callable = $this->get('resolveType');
40 40
 
41
-        if($callable && is_callable($callable)) {
41
+        if ($callable && is_callable($callable)) {
42 42
             return call_user_func_array($callable, [$object]);
43 43
         }
44 44
 
Please login to merge, or discard this patch.
Tests/ProcessorTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
                         'id'   => ['type' => TypeMap::TYPE_INT],
44 44
                         'name' => ['type' => TypeMap::TYPE_STRING]
45 45
                     ],
46
-                    'resolve' => function () {
46
+                    'resolve' => function() {
47 47
                         return [
48 48
                             'id'   => 1,
49 49
                             'name' => 'Alex'
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
                                 ['name' => 'String', 'fields' => []],
110 110
                                 ['name' => '__Schema', 'fields' => [['name' => 'queryType'], ['name' => 'mutationType'], ['name' => 'types']]],
111 111
                                 ['name' => '__Type', 'fields' => [['name' => 'name'], ['name' => 'kind'], ['name' => 'description'], ['name' => 'ofType'], ['name' => 'inputFields'], ['name' => 'enumValues'], ['name' => 'fields'], ['name' => 'interfaces'], ['name' => 'possibleTypes']]],
112
-                                ['name' => '__InputValue', 'fields' => [['name' => 'name'],['name' => 'description'],['name' => 'type'],['name' => 'defaultValue'],]],
113
-                                ['name' => '__EnumValue', 'fields' => [['name' => 'name'],['name' => 'description'],['name' => 'deprecationReason'],['name' => 'isDeprecated'],]],
112
+                                ['name' => '__InputValue', 'fields' => [['name' => 'name'], ['name' => 'description'], ['name' => 'type'], ['name' => 'defaultValue'], ]],
113
+                                ['name' => '__EnumValue', 'fields' => [['name' => 'name'], ['name' => 'description'], ['name' => 'deprecationReason'], ['name' => 'isDeprecated'], ]],
114 114
                                 ['name' => 'Boolean', 'fields' => []],
115 115
                                 ['name' => '__Field', 'fields' => [['name' => 'name'], ['name' => 'description'], ['name' => 'isDeprecated'], ['name' => 'deprecationReason'], ['name' => 'type'], ['name' => 'args']]],
116 116
                                 ['name' => '__Argument', 'fields' => [['name' => 'name'], ['name' => 'description']]],
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
                         'id'   => ['type' => TypeMap::TYPE_INT],
208 208
                         'name' => ['type' => TypeMap::TYPE_STRING]
209 209
                     ],
210
-                    'resolve' => function () {
210
+                    'resolve' => function() {
211 211
                         return [
212 212
                             'id'   => 1,
213 213
                             'name' => 'Alex'
Please login to merge, or discard this patch.
Tests/Type/Union/Schema/QueryType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             ->addField('kind', 'string')
22 22
             ->addField('description', 'string')
23 23
             ->addField('ofType', new QueryListType(), [
24
-                'resolve' => function () {
24
+                'resolve' => function() {
25 25
                     return [];
26 26
                 }
27 27
             ])
Please login to merge, or discard this patch.
Tests/StarWars/Schema/HumanType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             ->addField('friends', new ListType([
32 32
                 'item' => new CharacterInterface()
33 33
             ]), [
34
-                'resolve' => function ($droid) {
34
+                'resolve' => function($droid) {
35 35
                     return StarWarsData::getFriends($droid);
36 36
                 },
37 37
             ])
Please login to merge, or discard this patch.
Tests/StarWars/Schema/QueryType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                 'args'    => [
34 34
                     'episode' => ['type' => new EpisodeEnum()]
35 35
                 ],
36
-                'resolve' => function ($root, $args) {
36
+                'resolve' => function($root, $args) {
37 37
                     return StarWarsData::getHero(isset($args['episode']) ? $args['episode'] : null);
38 38
                 },
39 39
             ])
Please login to merge, or discard this patch.
Tests/StarWars/Schema/DroidType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         parent::build($config);
30 30
 
31
-        $config->getField('friends')->getConfig()->set('resolve', function($droid){
31
+        $config->getField('friends')->getConfig()->set('resolve', function($droid) {
32 32
             return StarWarsData::getFriends($droid);
33 33
         });
34 34
 
Please login to merge, or discard this patch.