@@ -33,7 +33,7 @@ |
||
| 33 | 33 | 'args' => [ |
| 34 | 34 | 'episode' => ['type' => new EpisodeEnum()] |
| 35 | 35 | ], |
| 36 | - 'resolve' => function ($root, $args) { |
|
| 36 | + 'resolve' => function($root, $args) { |
|
| 37 | 37 | return StarWarsData::getHero(isset($args['episode']) ? $args['episode'] : null); |
| 38 | 38 | }, |
| 39 | 39 | ]) |
@@ -98,21 +98,21 @@ discard block |
||
| 98 | 98 | 'friends' => [ |
| 99 | 99 | [ |
| 100 | 100 | 'name' => 'Luke Skywalker', |
| 101 | - 'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI',], |
|
| 101 | + 'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI', ], |
|
| 102 | 102 | 'friends' => [ |
| 103 | - ['name' => 'Han Solo',], |
|
| 104 | - ['name' => 'Leia Organa',], |
|
| 105 | - ['name' => 'C-3PO',], |
|
| 106 | - ['name' => 'R2-D2',], |
|
| 103 | + ['name' => 'Han Solo', ], |
|
| 104 | + ['name' => 'Leia Organa', ], |
|
| 105 | + ['name' => 'C-3PO', ], |
|
| 106 | + ['name' => 'R2-D2', ], |
|
| 107 | 107 | ], |
| 108 | 108 | ], |
| 109 | 109 | [ |
| 110 | 110 | 'name' => 'Han Solo', |
| 111 | 111 | 'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI'], |
| 112 | 112 | 'friends' => [ |
| 113 | - ['name' => 'Luke Skywalker',], |
|
| 113 | + ['name' => 'Luke Skywalker', ], |
|
| 114 | 114 | ['name' => 'Leia Organa'], |
| 115 | - ['name' => 'R2-D2',], |
|
| 115 | + ['name' => 'R2-D2', ], |
|
| 116 | 116 | ] |
| 117 | 117 | ], |
| 118 | 118 | [ |
@@ -120,10 +120,10 @@ discard block |
||
| 120 | 120 | 'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI'], |
| 121 | 121 | 'friends' => |
| 122 | 122 | [ |
| 123 | - ['name' => 'Luke Skywalker',], |
|
| 124 | - ['name' => 'Han Solo',], |
|
| 125 | - ['name' => 'C-3PO',], |
|
| 126 | - ['name' => 'R2-D2',], |
|
| 123 | + ['name' => 'Luke Skywalker', ], |
|
| 124 | + ['name' => 'Han Solo', ], |
|
| 125 | + ['name' => 'C-3PO', ], |
|
| 126 | + ['name' => 'R2-D2', ], |
|
| 127 | 127 | ], |
| 128 | 128 | ], |
| 129 | 129 | ], |
@@ -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 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | public function isValidValue($value) |
| 46 | 46 | { |
| 47 | - return in_array($value, array_map(function ($item) { return $item['value']; }, $this->getConfig()->get('values'))); |
|
| 47 | + return in_array($value, array_map(function($item) { return $item['value']; }, $this->getConfig()->get('values'))); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | abstract public function getValues(); |
@@ -55,8 +55,8 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | public function resolve($value) |
| 57 | 57 | { |
| 58 | - foreach($this->getConfig()->get('values') as $enumValue => $valueItem) { |
|
| 59 | - if($value == $valueItem['value']){ |
|
| 58 | + foreach ($this->getConfig()->get('values') as $enumValue => $valueItem) { |
|
| 59 | + if ($value == $valueItem['value']) { |
|
| 60 | 60 | return $enumValue; |
| 61 | 61 | } |
| 62 | 62 | } |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | $preResolvedValue = $this->getPreResolvedValue($contextValue, $query); |
| 157 | 157 | |
| 158 | 158 | if ($field->getConfig()->getType()->getKind() == TypeMap::KIND_LIST) { |
| 159 | - if(!is_array($preResolvedValue)){ |
|
| 159 | + if (!is_array($preResolvedValue)) { |
|
| 160 | 160 | $value = null; |
| 161 | 161 | $this->resolveValidator->addError(new ResolveException('Not valid resolve value for list type')); |
| 162 | 162 | } |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | |
| 170 | 170 | if ($type->getKind() == TypeMap::KIND_ENUM) { |
| 171 | 171 | /** @var $type AbstractEnumType */ |
| 172 | - if(!$type->isValidValue($resolvedValueItem)) { |
|
| 172 | + if (!$type->isValidValue($resolvedValueItem)) { |
|
| 173 | 173 | $this->resolveValidator->addError(new ResolveException('Not valid value for enum type')); |
| 174 | 174 | |
| 175 | 175 | $listValue = null; |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | $value = $listValue; |
| 187 | 187 | } else { |
| 188 | 188 | if ($field->getType()->getKind() == TypeMap::KIND_ENUM) { |
| 189 | - if(!$field->getType()->isValidValue($preResolvedValue)) { |
|
| 189 | + if (!$field->getType()->isValidValue($preResolvedValue)) { |
|
| 190 | 190 | $this->resolveValidator->addError(new ResolveException('Not valid value for enum type')); |
| 191 | 191 | $value = null; |
| 192 | 192 | } else { |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | $value[] = []; |
| 218 | 218 | $index = count($value) - 1; |
| 219 | 219 | |
| 220 | - if($field->getConfig()->getType()->getConfig()->getItem()->getKind() == TypeMap::KIND_INTERFACE) { |
|
| 220 | + if ($field->getConfig()->getType()->getConfig()->getItem()->getKind() == TypeMap::KIND_INTERFACE) { |
|
| 221 | 221 | $resolvedValueItem = $field->getConfig()->getType()->getConfig()->getItemConfig()->resolveType($resolvedValueItem); |
| 222 | 222 | $type = $field->getConfig()->getType()->getConfig()->getItem(); |
| 223 | 223 | } else { |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | { |
| 288 | 288 | $resolvedValue = $field->getConfig()->resolve($contextValue, $this->parseArgumentsValues($field, $query)); |
| 289 | 289 | |
| 290 | - if($field->getType()->getKind() == TypeMap::KIND_INTERFACE){ |
|
| 290 | + if ($field->getType()->getKind() == TypeMap::KIND_INTERFACE) { |
|
| 291 | 291 | $resolvedValue = $field->getType()->resolveType($resolvedValue); |
| 292 | 292 | } |
| 293 | 293 | |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | return []; |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | - $args = []; |
|
| 309 | + $args = []; |
|
| 310 | 310 | foreach ($query->getArguments() as $argument) { |
| 311 | 311 | $args[$argument->getName()] = $field->getConfig()->getArgument($argument->getName())->getType()->parseValue($argument->getValue()->getValue()); |
| 312 | 312 | } |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | foreach ($fragment->getFields() as $fragmentField) { |
| 340 | 340 | $value = $this->collectValue($value, $this->executeQuery($fragmentField, $queryType, $resolvedValue)); |
| 341 | 341 | } |
| 342 | - } else if($field->getName() == self::TYPE_NAME_QUERY) { |
|
| 342 | + } else if ($field->getName() == self::TYPE_NAME_QUERY) { |
|
| 343 | 343 | $value = $this->collectValue($value, [$field->getAlias() ?: $field->getName() => $queryType->getName()]); |
| 344 | 344 | } else { |
| 345 | 345 | $value = $this->collectValue($value, $this->executeQuery($field, $queryType, $resolvedValue)); |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function validateArguments($field, $query, $request) |
| 27 | 27 | { |
| 28 | - $requiredArguments = array_filter($field->getConfig()->getArguments(), function (InputField $argument) { |
|
| 28 | + $requiredArguments = array_filter($field->getConfig()->getArguments(), function(InputField $argument) { |
|
| 29 | 29 | return $argument->getConfig()->get('required'); |
| 30 | 30 | }); |
| 31 | 31 | |