Completed
Push — master ( e40fed...ed70fa )
by Portey
02:55
created
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.
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/Validator/ResolveValidator/ResolveValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function validateArguments($queryType, $query, $request)
27 27
     {
28
-        $requiredArguments = array_filter($queryType->getConfig()->getArguments(), function (Field $argument) {
28
+        $requiredArguments = array_filter($queryType->getConfig()->getArguments(), function(Field $argument) {
29 29
             return $argument->getConfig()->isRequired();
30 30
         });
31 31
 
Please login to merge, or discard this patch.
Tests/ProcessorTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
                         'id'   => ['type' => 'int'],
40 40
                         'name' => ['type' => 'string']
41 41
                     ],
42
-                    'resolve' => function () {
42
+                    'resolve' => function() {
43 43
                         return [
44 44
                             'id'   => 1,
45 45
                             'name' => 'Alex'
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
                         'id'   => ['type' => 'int'],
116 116
                         'name' => ['type' => 'string']
117 117
                     ],
118
-                    'resolve' => function () {
118
+                    'resolve' => function() {
119 119
                         return [
120 120
                             'id'   => 1,
121 121
                             'name' => 'Alex'
Please login to merge, or discard this patch.
src/Parser/Tokenizer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -226,10 +226,10 @@
 block discarded – undo
226 226
 
227 227
         $value = substr($this->source, $start, $this->pos - $start);
228 228
 
229
-        if(strpos($value, '.') === false){
230
-            $value = (int) $value;
229
+        if (strpos($value, '.') === false) {
230
+            $value = (int)$value;
231 231
         } else {
232
-            $value = (float) $value;
232
+            $value = (float)$value;
233 233
         }
234 234
 
235 235
         return new Token(Token::TYPE_NUMBER, $value);
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
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
             }
167 167
 
168 168
             $value = [];
169
-            if($resolvedValue){
169
+            if ($resolvedValue) {
170 170
                 if ($field->getType()->getKind() == TypeMap::KIND_LIST) {
171 171
                     foreach ($resolvedValue as $resolvedValueItem) {
172 172
                         $value[] = [];
Please login to merge, or discard this patch.
src/Type/Config/Field/FieldConfig.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
     {
34 34
         $resolveFunction = $this->get('resolve', null);
35 35
 
36
-        if($resolveFunction && is_callable($resolveFunction)) {
36
+        if ($resolveFunction && is_callable($resolveFunction)) {
37 37
            return $resolveFunction($value, $args);
38 38
         }
39 39
 
Please login to merge, or discard this patch.
src/Definition/QueryType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
             ->addField('kind', 'string')
23 23
             ->addField('description', 'string')
24 24
             ->addField('ofType', new QueryListType(), [
25
-                'resolve' => function () {
25
+                'resolve' => function() {
26 26
                     return [];
27 27
                 }
28 28
             ])
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     public function resolve($value = null, $args = [])
37 37
     {
38 38
         /** @var Schema|Field  $value */
39
-        if($value instanceof Schema){
39
+        if ($value instanceof Schema) {
40 40
             return $value->getQueryType();
41 41
         }
42 42
 
Please login to merge, or discard this patch.