@@ -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 |
@@ -61,7 +61,7 @@ |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
64 | - * @return Field[]|Query[] |
|
64 | + * @return Query[] |
|
65 | 65 | */ |
66 | 66 | public function getFields() |
67 | 67 | { |
@@ -61,7 +61,7 @@ |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
64 | - * @return Field[]|Query[] |
|
64 | + * @return Query[] |
|
65 | 65 | */ |
66 | 66 | public function getFields() |
67 | 67 | { |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | /** |
190 | 190 | * @param $objectType InputObjectType|ObjectType |
191 | 191 | * @param $query Mutation|Query |
192 | - * @return null |
|
192 | + * @return boolean |
|
193 | 193 | */ |
194 | 194 | private function checkFieldExist($objectType, $query) |
195 | 195 | { |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
229 | - * @param $field Field |
|
229 | + * @param Field $field Field |
|
230 | 230 | * @param $contextValue mixed |
231 | 231 | * @param $query Query |
232 | 232 | * |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $value[] = []; |
128 | 128 | $index = count($value) - 1; |
129 | 129 | |
130 | - if(in_array($outputType->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE]) ) { |
|
130 | + if (in_array($outputType->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])) { |
|
131 | 131 | $type = $outputType->getConfig()->getItemConfig()->resolveType($resolvedValueItem); |
132 | 132 | } else { |
133 | 133 | $type = $outputType; |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | $preResolvedValue = $this->getPreResolvedValue($contextValue, $query); |
174 | 174 | |
175 | 175 | if ($field->getConfig()->getType()->getKind() == TypeMap::KIND_LIST) { |
176 | - if(!is_array($preResolvedValue)){ |
|
176 | + if (!is_array($preResolvedValue)) { |
|
177 | 177 | $value = null; |
178 | 178 | $this->resolveValidator->addError(new ResolveException('Not valid resolve value for list type')); |
179 | 179 | } |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | |
187 | 187 | if ($type->getKind() == TypeMap::KIND_ENUM) { |
188 | 188 | /** @var $type AbstractEnumType */ |
189 | - if(!$type->isValidValue($resolvedValueItem)) { |
|
189 | + if (!$type->isValidValue($resolvedValueItem)) { |
|
190 | 190 | $this->resolveValidator->addError(new ResolveException('Not valid value for enum type')); |
191 | 191 | |
192 | 192 | $listValue = null; |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | $value = $listValue; |
204 | 204 | } else { |
205 | 205 | if ($field->getType()->getKind() == TypeMap::KIND_ENUM) { |
206 | - if(!$field->getType()->isValidValue($preResolvedValue)) { |
|
206 | + if (!$field->getType()->isValidValue($preResolvedValue)) { |
|
207 | 207 | $this->resolveValidator->addError(new ResolveException('Not valid value for enum type')); |
208 | 208 | $value = null; |
209 | 209 | } else { |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | $value[] = []; |
235 | 235 | $index = count($value) - 1; |
236 | 236 | |
237 | - if(in_array($field->getConfig()->getType()->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE]) ) { |
|
237 | + if (in_array($field->getConfig()->getType()->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])) { |
|
238 | 238 | $type = $field->getConfig()->getType()->getConfig()->getItemConfig()->resolveType($resolvedValueItem); |
239 | 239 | } else { |
240 | 240 | $type = $field->getType(); |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | { |
310 | 310 | $resolvedValue = $field->getConfig()->resolve($contextValue, $this->parseArgumentsValues($field, $query)); |
311 | 311 | |
312 | - if(in_array($field->getType()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])){ |
|
312 | + if (in_array($field->getType()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])) { |
|
313 | 313 | $resolvedType = $field->getType()->resolveType($resolvedValue); |
314 | 314 | $field->setType($resolvedType); |
315 | 315 | } |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | return []; |
330 | 330 | } |
331 | 331 | |
332 | - $args = []; |
|
332 | + $args = []; |
|
333 | 333 | foreach ($query->getArguments() as $argument) { |
334 | 334 | $args[$argument->getName()] = $field->getConfig()->getArgument($argument->getName())->getType()->parseValue($argument->getValue()->getValue()); |
335 | 335 | } |
@@ -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 { |
@@ -38,7 +38,7 @@ |
||
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 |
@@ -43,7 +43,7 @@ discard block |
||
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 |
||
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 |
||
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' |
@@ -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 | ]) |