@@ -21,14 +21,14 @@ |
||
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); |
@@ -37,7 +37,7 @@ |
||
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 |
@@ -25,7 +25,7 @@ |
||
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 |
@@ -39,7 +39,7 @@ discard block |
||
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 |
||
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' |
@@ -21,7 +21,7 @@ |
||
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 | ]) |
@@ -226,10 +226,10 @@ |
||
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); |
@@ -21,7 +21,7 @@ |
||
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 | ]) |
@@ -40,7 +40,7 @@ |
||
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 { |
@@ -22,7 +22,7 @@ |
||
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 | ]) |