@@ -25,7 +25,7 @@ |
||
25 | 25 | ->addField('name', new NonNullType(new StringType())) |
26 | 26 | ->addField('friends', [ |
27 | 27 | 'type' => new ListType(new CharacterInterface()), |
28 | - 'resolve' => function ($droid) { |
|
28 | + 'resolve' => function($droid) { |
|
29 | 29 | return StarWarsData::getFriends($droid); |
30 | 30 | }, |
31 | 31 | ]) |
@@ -34,13 +34,13 @@ |
||
34 | 34 | $name = $name == 'Datetime' ? 'DateTime' : $name; |
35 | 35 | $name = $name == 'Datetimetz' ? 'DateTimeTz' : $name; |
36 | 36 | |
37 | - $className = 'Youshido\GraphQL\Type\Scalar\\' . $name . 'Type'; |
|
37 | + $className = 'Youshido\GraphQL\Type\Scalar\\'.$name.'Type'; |
|
38 | 38 | self::$objectsHash[$type] = new $className(); |
39 | 39 | } |
40 | 40 | |
41 | 41 | return self::$objectsHash[$type]; |
42 | 42 | } else { |
43 | - throw new ConfigurationException('Configuration problem with type ' . $type); |
|
43 | + throw new ConfigurationException('Configuration problem with type '.$type); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 |
@@ -45,7 +45,7 @@ |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | foreach ($value->getTypesList()->getTypes() as $type) { |
48 | - $this->collectTypes($type); |
|
48 | + $this->collectTypes($type); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return array_values($this->types); |
@@ -20,7 +20,9 @@ |
||
20 | 20 | |
21 | 21 | protected function collectTypes(AbstractType $type) |
22 | 22 | { |
23 | - if (is_object($type) && array_key_exists($type->getName(), $this->types)) return; |
|
23 | + if (is_object($type) && array_key_exists($type->getName(), $this->types)) { |
|
24 | + return; |
|
25 | + } |
|
24 | 26 | |
25 | 27 | switch ($type->getKind()) { |
26 | 28 | case TypeMap::KIND_INTERFACE: |
@@ -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 | { |
@@ -219,11 +219,15 @@ |
||
219 | 219 | $this->variables = $variables; |
220 | 220 | foreach ($this->variableReferences as $reference) { |
221 | 221 | /** invalid request with no variable */ |
222 | - if (!$reference->getVariable()) continue; |
|
222 | + if (!$reference->getVariable()) { |
|
223 | + continue; |
|
224 | + } |
|
223 | 225 | $variableName = $reference->getVariable()->getName(); |
224 | 226 | |
225 | 227 | /** no variable was set at the time */ |
226 | - if (!array_key_exists($variableName, $variables)) continue; |
|
228 | + if (!array_key_exists($variableName, $variables)) { |
|
229 | + continue; |
|
230 | + } |
|
227 | 231 | |
228 | 232 | $reference->getVariable()->setValue($variables[$variableName]); |
229 | 233 | $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 | ] |