@@ -62,7 +62,7 @@ |
||
62 | 62 | public function getValue() |
63 | 63 | { |
64 | 64 | if (null === $this->value) { |
65 | - throw new \LogicException('Value is not set for variable "' . $this->name . '"'); |
|
65 | + throw new \LogicException('Value is not set for variable "'.$this->name.'"'); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | return $this->value; |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | public function assertValidArguments(FieldInterface $field, AstFieldInterface $query, Request $request) |
35 | 35 | { |
36 | - $requiredArguments = array_filter($field->getArguments(), function (InputField $argument) { |
|
36 | + $requiredArguments = array_filter($field->getArguments(), function(InputField $argument) { |
|
37 | 37 | return $argument->getType()->getKind() === TypeMap::KIND_NON_NULL; |
38 | 38 | }); |
39 | 39 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | self::assertTrue(isset($res['data']['items'])); |
24 | 24 | |
25 | - foreach($res['data']['items'] as $item) { |
|
25 | + foreach ($res['data']['items'] as $item) { |
|
26 | 26 | self::assertTrue(isset($item['custom']['value'])); |
27 | 27 | self::assertEquals(self::BUG_NOT_EXISTS_VALUE, $item['custom']['value']); |
28 | 28 | } |
@@ -52,7 +52,7 @@ |
||
52 | 52 | 'args' => [ |
53 | 53 | 'example' => new StringType() |
54 | 54 | ], |
55 | - 'resolve' => function () { |
|
55 | + 'resolve' => function() { |
|
56 | 56 | return [ |
57 | 57 | ['id' => 1], |
58 | 58 | ['id' => 2], |
@@ -223,6 +223,9 @@ discard block |
||
223 | 223 | return $this; |
224 | 224 | } |
225 | 225 | |
226 | + /** |
|
227 | + * @param string $name |
|
228 | + */ |
|
226 | 229 | public function getVariable($name) |
227 | 230 | { |
228 | 231 | return $this->hasVariable($name) ? $this->variables[$name] : null; |
@@ -266,7 +269,7 @@ discard block |
||
266 | 269 | } |
267 | 270 | |
268 | 271 | /** |
269 | - * @return array|VariableReference[] |
|
272 | + * @return VariableReference[] |
|
270 | 273 | */ |
271 | 274 | public function getVariableReferences() |
272 | 275 | { |
@@ -8,7 +8,6 @@ |
||
8 | 8 | namespace Youshido\GraphQL\Execution; |
9 | 9 | |
10 | 10 | |
11 | -use Youshido\GraphQL\Parser\Ast\ArgumentValue\Literal; |
|
12 | 11 | use Youshido\GraphQL\Parser\Ast\ArgumentValue\Variable; |
13 | 12 | use Youshido\GraphQL\Parser\Ast\ArgumentValue\VariableReference; |
14 | 13 | use Youshido\GraphQL\Parser\Ast\Fragment; |
@@ -208,7 +208,7 @@ |
||
208 | 208 | } |
209 | 209 | |
210 | 210 | $this->variables = $variables; |
211 | - foreach($this->variableReferences as $reference) { |
|
211 | + foreach ($this->variableReferences as $reference) { |
|
212 | 212 | /** invalid request with no variable */ |
213 | 213 | if (!$reference->getVariable()) continue; |
214 | 214 | $variableName = $reference->getVariable()->getName(); |
@@ -210,11 +210,15 @@ |
||
210 | 210 | $this->variables = $variables; |
211 | 211 | foreach($this->variableReferences as $reference) { |
212 | 212 | /** invalid request with no variable */ |
213 | - if (!$reference->getVariable()) continue; |
|
213 | + if (!$reference->getVariable()) { |
|
214 | + continue; |
|
215 | + } |
|
214 | 216 | $variableName = $reference->getVariable()->getName(); |
215 | 217 | |
216 | 218 | /** no variable was set at the time */ |
217 | - if (!array_key_exists($variableName, $variables)) continue; |
|
219 | + if (!array_key_exists($variableName, $variables)) { |
|
220 | + continue; |
|
221 | + } |
|
218 | 222 | |
219 | 223 | $reference->getVariable()->setValue($variables[$variableName]); |
220 | 224 | $reference->setValue($variables[$variableName]); |
@@ -40,7 +40,7 @@ |
||
40 | 40 | ] |
41 | 41 | ] |
42 | 42 | ]), |
43 | - 'resolve' => function ($source, array $args, ResolveInfo $info) { |
|
43 | + 'resolve' => function($source, array $args, ResolveInfo $info) { |
|
44 | 44 | $internalArgs = [ |
45 | 45 | 'comment_id' => 200 |
46 | 46 | ]; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | ['id' => 2, 'name' => 'Alex'], |
32 | 32 | ['id' => 3, 'name' => 'Mike'], |
33 | 33 | ]; |
34 | - $posts = []; |
|
34 | + $posts = []; |
|
35 | 35 | for ($i = 0; $i < 10; $i++) { |
36 | 36 | $posts[] = [ |
37 | 37 | 'id' => $i + 1, |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | 'fields' => [ |
68 | 68 | 'posts' => [ |
69 | 69 | 'type' => new ListType($postType), |
70 | - 'resolve' => function ($source, $args, $info) { |
|
70 | + 'resolve' => function($source, $args, $info) { |
|
71 | 71 | return $this->getDataForPosts(); |
72 | 72 | } |
73 | 73 | ] |
@@ -12,8 +12,6 @@ |
||
12 | 12 | use Youshido\GraphQL\Schema\AbstractSchema; |
13 | 13 | use Youshido\GraphQL\Type\ListType\ListType; |
14 | 14 | use Youshido\GraphQL\Type\Object\AbstractObjectType; |
15 | -use Youshido\GraphQL\Type\Object\ObjectType; |
|
16 | -use Youshido\GraphQL\Type\TypeMap; |
|
17 | 15 | |
18 | 16 | class SchemaType extends AbstractObjectType |
19 | 17 | { |
@@ -10,7 +10,6 @@ |
||
10 | 10 | |
11 | 11 | |
12 | 12 | use Youshido\GraphQL\Execution\Processor; |
13 | -use Youshido\GraphQL\Parser\Ast\ArgumentValue\InputObject; |
|
14 | 13 | use Youshido\GraphQL\Schema\Schema; |
15 | 14 | use Youshido\GraphQL\Type\InputObject\InputObjectType; |
16 | 15 | use Youshido\GraphQL\Type\ListType\ListType; |
@@ -87,14 +87,14 @@ discard block |
||
87 | 87 | [ |
88 | 88 | 'data' => ['createList' => null], |
89 | 89 | 'errors' => [[ |
90 | - 'message' => 'Not valid type for argument "posts" in query "createList"', |
|
91 | - 'locations' => [ |
|
92 | - [ |
|
93 | - 'line' => 1, |
|
94 | - 'column' => 23 |
|
95 | - ] |
|
96 | - ] |
|
97 | - ]] |
|
90 | + 'message' => 'Not valid type for argument "posts" in query "createList"', |
|
91 | + 'locations' => [ |
|
92 | + [ |
|
93 | + 'line' => 1, |
|
94 | + 'column' => 23 |
|
95 | + ] |
|
96 | + ] |
|
97 | + ]] |
|
98 | 98 | ], |
99 | 99 | $processor->getResponseData() |
100 | 100 | ); |
@@ -185,14 +185,14 @@ discard block |
||
185 | 185 | $this->assertEquals([ |
186 | 186 | 'data' => ['createList' => null], |
187 | 187 | 'errors' => [[ |
188 | - 'message' => 'Not valid type for argument "topArgument" in query "createList"', |
|
189 | - 'locations' => [ |
|
190 | - [ |
|
191 | - 'line' => 1, |
|
192 | - 'column' => 23 |
|
193 | - ] |
|
194 | - ] |
|
195 | - ]], |
|
188 | + 'message' => 'Not valid type for argument "topArgument" in query "createList"', |
|
189 | + 'locations' => [ |
|
190 | + [ |
|
191 | + 'line' => 1, |
|
192 | + 'column' => 23 |
|
193 | + ] |
|
194 | + ] |
|
195 | + ]], |
|
196 | 196 | ], $processor->getResponseData()); |
197 | 197 | $processor->getExecutionContext()->clearErrors(); |
198 | 198 | $processor->processPayload('mutation { createList(topArgument:{ |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | 'fields' => [ |
56 | 56 | 'empty' => [ |
57 | 57 | 'type' => new StringType(), |
58 | - 'resolve' => function () { |
|
58 | + 'resolve' => function() { |
|
59 | 59 | return null; |
60 | 60 | } |
61 | 61 | ] |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | ])) |
75 | 75 | ], |
76 | 76 | 'type' => new BooleanType(), |
77 | - 'resolve' => function ($object, $args) { |
|
77 | + 'resolve' => function($object, $args) { |
|
78 | 78 | return true; |
79 | 79 | } |
80 | 80 | ] |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | 'fields' => [ |
109 | 109 | 'empty' => [ |
110 | 110 | 'type' => new StringType(), |
111 | - 'resolve' => function () { |
|
111 | + 'resolve' => function() { |
|
112 | 112 | return null; |
113 | 113 | } |
114 | 114 | ] |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | ]) |
128 | 128 | ], |
129 | 129 | 'type' => new BooleanType(), |
130 | - 'resolve' => function ($object, $args) { |
|
130 | + 'resolve' => function($object, $args) { |
|
131 | 131 | return true; |
132 | 132 | } |
133 | 133 | ] |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | 'fields' => [ |
152 | 152 | 'empty' => [ |
153 | 153 | 'type' => new StringType(), |
154 | - 'resolve' => function () { |
|
154 | + 'resolve' => function() { |
|
155 | 155 | } |
156 | 156 | ], |
157 | 157 | ] |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | ] |
175 | 175 | ]) |
176 | 176 | ], |
177 | - 'resolve' => function () { |
|
177 | + 'resolve' => function() { |
|
178 | 178 | return 'success message'; |
179 | 179 | } |
180 | 180 | ] |
@@ -223,10 +223,10 @@ discard block |
||
223 | 223 | ], |
224 | 224 | ], |
225 | 225 | ], |
226 | - 'resolve' => function ($source, $args) { |
|
226 | + 'resolve' => function($source, $args) { |
|
227 | 227 | return [ |
228 | - 'limit is ' . $args['paging']['limit'], |
|
229 | - 'offset is ' . $args['paging']['offset'], |
|
228 | + 'limit is '.$args['paging']['limit'], |
|
229 | + 'offset is '.$args['paging']['offset'], |
|
230 | 230 | ]; |
231 | 231 | } |
232 | 232 | ], |