Completed
Push — master ( 7e7fa7...4d2ac5 )
by Portey
03:34
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/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/Definition/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.
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.
Tests/Type/ObjectTypeTest.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.
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.
Tests/Schema/CharacterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
             ->addField('id', TypeMap::TYPE_ID, ['required' => true])
23 23
             ->addField('name', TypeMap::TYPE_STRING, ['required' => true])
24 24
             ->addField('friends', new ListType(['item' => new CharacterInterface()]), [
25
-                'resolve' => function($value){
25
+                'resolve' => function($value) {
26 26
                     return $value['friends'];
27 27
                 }
28 28
             ])
Please login to merge, or discard this patch.