@@ -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 | ] |
@@ -29,12 +29,12 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function offsetToCursor($offset) |
31 | 31 | { |
32 | - return self::keyToCursor($offset); |
|
32 | + return self::keyToCursor($offset); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | public static function keyToCursor($key) |
36 | 36 | { |
37 | - return base64_encode(self::PREFIX . $key); |
|
37 | + return base64_encode(self::PREFIX . $key); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
@@ -48,30 +48,30 @@ discard block |
||
48 | 48 | return self::cursorToKey($cursor); |
49 | 49 | } |
50 | 50 | |
51 | - /** |
|
52 | - * Converts a cursor to its array key. |
|
53 | - * |
|
54 | - * @param $cursor |
|
55 | - * @return null|string |
|
56 | - */ |
|
51 | + /** |
|
52 | + * Converts a cursor to its array key. |
|
53 | + * |
|
54 | + * @param $cursor |
|
55 | + * @return null|string |
|
56 | + */ |
|
57 | 57 | public static function cursorToKey($cursor) { |
58 | - if ($decoded = base64_decode($cursor)) { |
|
58 | + if ($decoded = base64_decode($cursor)) { |
|
59 | 59 | return substr($decoded, strlen(self::PREFIX)); |
60 | - } |
|
61 | - return null; |
|
60 | + } |
|
61 | + return null; |
|
62 | 62 | } |
63 | 63 | |
64 | - /** |
|
65 | - * Converts a cursor to an array offset. |
|
66 | - * |
|
67 | - * @param $cursor |
|
68 | - * The cursor string. |
|
69 | - * @param $default |
|
70 | - * The default value, in case the cursor is not given. |
|
71 | - * @param array $array |
|
72 | - * The array to use in counting the offset. If empty, assumed to be an indexed array. |
|
73 | - * @return int|null |
|
74 | - */ |
|
64 | + /** |
|
65 | + * Converts a cursor to an array offset. |
|
66 | + * |
|
67 | + * @param $cursor |
|
68 | + * The cursor string. |
|
69 | + * @param $default |
|
70 | + * The default value, in case the cursor is not given. |
|
71 | + * @param array $array |
|
72 | + * The array to use in counting the offset. If empty, assumed to be an indexed array. |
|
73 | + * @return int|null |
|
74 | + */ |
|
75 | 75 | public static function cursorToOffsetWithDefault($cursor, $default, $array = []) |
76 | 76 | { |
77 | 77 | if (!is_string($cursor)) { |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | |
81 | 81 | $key = self::cursorToKey($cursor); |
82 | 82 | if (empty($array)) { |
83 | - $offset = $key; |
|
83 | + $offset = $key; |
|
84 | 84 | } |
85 | 85 | else { |
86 | - $offset = array_search($key, array_keys($array)); |
|
86 | + $offset = array_search($key, array_keys($array)); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | return is_null($offset) ? $default : (int) $offset; |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | if (!is_array($data)) return null; |
19 | 19 | |
20 | 20 | $index = array_search($object, $data); |
21 | - return $index === false ? null : (string) self::keyToCursor($index); |
|
21 | + return $index === false ? null : (string)self::keyToCursor($index); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | public static function keyToCursor($key) |
36 | 36 | { |
37 | - return base64_encode(self::PREFIX . $key); |
|
37 | + return base64_encode(self::PREFIX.$key); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $offset = array_search($key, array_keys($array)); |
87 | 87 | } |
88 | 88 | |
89 | - return is_null($offset) ? $default : (int) $offset; |
|
89 | + return is_null($offset) ? $default : (int)$offset; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | public static function connectionFromArray(array $data, array $args = []) |
@@ -15,7 +15,9 @@ discard block |
||
15 | 15 | |
16 | 16 | public static function cursorForObjectInConnection($data, $object) |
17 | 17 | { |
18 | - if (!is_array($data)) return null; |
|
18 | + if (!is_array($data)) { |
|
19 | + return null; |
|
20 | + } |
|
19 | 21 | |
20 | 22 | $index = array_search($object, $data); |
21 | 23 | return $index === false ? null : (string) self::keyToCursor($index); |
@@ -81,8 +83,7 @@ discard block |
||
81 | 83 | $key = self::cursorToKey($cursor); |
82 | 84 | if (empty($array)) { |
83 | 85 | $offset = $key; |
84 | - } |
|
85 | - else { |
|
86 | + } else { |
|
86 | 87 | $offset = array_search($key, array_keys($array)); |
87 | 88 | } |
88 | 89 |
@@ -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; |
@@ -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 | ], |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | ] |
271 | 271 | ]), |
272 | 272 | ], |
273 | - 'resolve' => function ($source, $args) { |
|
273 | + 'resolve' => function($source, $args) { |
|
274 | 274 | return sprintf('%s by %s', $args['title'], $args['userId']); |
275 | 275 | } |
276 | 276 | ], |