Completed
Push — master ( 50615c...cea04e )
by Alexandr
02:45
created
Tests/ProcessorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                         'id'   => ['type' => 'int'],
33 33
                         'name' => ['type' => 'string']
34 34
                     ],
35
-                    'resolve' => function () {
35
+                    'resolve' => function() {
36 36
                         return [
37 37
                             'id'   => 1,
38 38
                             'name' => 'Alex'
Please login to merge, or discard this patch.
Tests/Type/ObjectTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                         'type' => 'int'
46 46
                     ]
47 47
                 ],
48
-                'resolve'   => function ($object, $args = []) {
48
+                'resolve'   => function($object, $args = []) {
49 49
 
50 50
                 }
51 51
             ]);
Please login to merge, or discard this patch.
src/Parser/Ast/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      */
74 74
     public function hasFields()
75 75
     {
76
-        return (bool) count($this->fields);
76
+        return (bool)count($this->fields);
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.
src/Parser/Parser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
                 return new Mutation($name, $alias, $arguments, $fields);
142 142
             }
143 143
         } else {
144
-            if($highLevel && $type == Token::TYPE_MUTATION){
144
+            if ($highLevel && $type == Token::TYPE_MUTATION) {
145 145
                 return new Mutation($name, $alias, $arguments);
146 146
             }
147 147
 
Please login to merge, or discard this patch.
src/Processor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@
 block discarded – undo
294 294
         $this->schema = $schema;
295 295
 
296 296
         $this->schema->addQuery('__schema', new SchemaType());
297
-        $this->schema->addQuery('__type',   new TypeDefinitionType());
297
+        $this->schema->addQuery('__type', new TypeDefinitionType());
298 298
     }
299 299
 
300 300
     /**
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function hasQueries()
99 99
     {
100
-        return (bool) count($this->queries);
100
+        return (bool)count($this->queries);
101 101
     }
102 102
 
103 103
     /**
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function hasMutations()
107 107
     {
108
-        return (bool) count($this->mutations);
108
+        return (bool)count($this->mutations);
109 109
     }
110 110
 
111 111
     /**
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
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             return false;
41 41
         }
42 42
 
43
-        $requiredFields = array_filter($this->getConfig()->getFields(), function ($field) {
43
+        $requiredFields = array_filter($this->getConfig()->getFields(), function($field) {
44 44
             /** @var Field $field */
45 45
             return $field->getConfig()->isRequired();
46 46
         });
Please login to merge, or discard this patch.
src/Validator/ConfigValidator/ConfigValidator.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,9 @@
 block discarded – undo
36 36
 
37 37
     public function validate($data, $rules = [], $extraFieldsAllowed = null)
38 38
     {
39
-        if ($extraFieldsAllowed !== null) $this->setExtraFieldsAllowed($extraFieldsAllowed);
39
+        if ($extraFieldsAllowed !== null) {
40
+            $this->setExtraFieldsAllowed($extraFieldsAllowed);
41
+        }
40 42
 
41 43
         $processedFields = [];
42 44
         foreach ($rules as $fieldName => $fieldRules) {
Please login to merge, or discard this patch.
src/Validator/ConfigValidator/Rules/TypeValidationRule.php 1 patch
Braces   +18 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,20 +88,28 @@  discard block
 block discarded – undo
88 88
 
89 89
     private function isArrayOfFields($data)
90 90
     {
91
-        if (!is_array($data)) return false;
91
+        if (!is_array($data)) {
92
+            return false;
93
+        }
92 94
 
93 95
         foreach ($data as $name => $item) {
94
-            if (!$this->isField($item, $name)) return false;
96
+            if (!$this->isField($item, $name)) {
97
+                return false;
98
+            }
95 99
         }
96 100
         return true;
97 101
     }
98 102
 
99 103
     private function isArrayOfInputs($data)
100 104
     {
101
-        if (!is_array($data)) return false;
105
+        if (!is_array($data)) {
106
+            return false;
107
+        }
102 108
 
103 109
         foreach ($data as $name => $item) {
104
-            if (!$this->isInputField($item, $name)) return false;
110
+            if (!$this->isInputField($item, $name)) {
111
+                return false;
112
+            }
105 113
         }
106 114
         return true;
107 115
     }
@@ -114,7 +122,9 @@  discard block
 block discarded – undo
114 122
 
115 123
         try {
116 124
             /** @todo need to change it to optimize performance */
117
-            if (empty($data['name'])) $data['name'] = $name;
125
+            if (empty($data['name'])) {
126
+                $data['name'] = $name;
127
+            }
118 128
 
119 129
             $config = new FieldConfig($data);
120 130
             return $config->isValid();
@@ -131,7 +141,9 @@  discard block
 block discarded – undo
131 141
         }
132 142
         try {
133 143
             /** @todo need to change it to optimize performance */
134
-            if (empty($data['name'])) $data['name'] = $name;
144
+            if (empty($data['name'])) {
145
+                $data['name'] = $name;
146
+            }
135 147
 
136 148
             $config = new InputFieldConfig($data);
137 149
             return $config->isValid();
Please login to merge, or discard this patch.