@@ -23,7 +23,7 @@ |
||
23 | 23 | ->addField('name', new NonNullType(new StringType())) |
24 | 24 | ->addField('friends', [ |
25 | 25 | 'type' => new ListType(new CharacterInterface()), |
26 | - 'resolve' => function ($value) { |
|
26 | + 'resolve' => function($value) { |
|
27 | 27 | return $value['friends']; |
28 | 28 | } |
29 | 29 | ]) |
@@ -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 | ]) |
@@ -49,7 +49,7 @@ |
||
49 | 49 | return $this->getConfig()->get($propertyName); |
50 | 50 | } |
51 | 51 | |
52 | - throw new \Exception('Call to undefined method ' . $method); |
|
52 | + throw new \Exception('Call to undefined method '.$method); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | } |
@@ -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], |
@@ -24,7 +24,6 @@ |
||
24 | 24 | use Youshido\GraphQL\Parser\Ast\Interfaces\FieldInterface as AstFieldInterface; |
25 | 25 | use Youshido\GraphQL\Parser\Ast\Mutation as AstMutation; |
26 | 26 | use Youshido\GraphQL\Parser\Ast\Query as AstQuery; |
27 | -use Youshido\GraphQL\Parser\Ast\Query; |
|
28 | 27 | use Youshido\GraphQL\Parser\Ast\TypedFragmentReference; |
29 | 28 | use Youshido\GraphQL\Parser\Parser; |
30 | 29 | use Youshido\GraphQL\Schema\AbstractSchema; |
@@ -185,6 +185,9 @@ |
||
185 | 185 | } |
186 | 186 | } |
187 | 187 | |
188 | + /** |
|
189 | + * @param \Youshido\GraphQL\Parser\Ast\Interfaces\ValueInterface $argumentValue |
|
190 | + */ |
|
188 | 191 | private function prepareArgumentValue($argumentValue, AbstractType $argumentType, Request $request) |
189 | 192 | { |
190 | 193 | switch ($argumentType->getKind()) { |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | $result = []; |
402 | 402 | foreach ($resolvedValue as $resolvedValueItem) { |
403 | 403 | try { |
404 | - $fakeField->getConfig()->set('resolve', function () use ($resolvedValueItem) { |
|
404 | + $fakeField->getConfig()->set('resolve', function() use ($resolvedValueItem) { |
|
405 | 405 | return $resolvedValueItem; |
406 | 406 | }); |
407 | 407 | |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | } |
452 | 452 | |
453 | 453 | /** @var AbstractUnionType $type */ |
454 | - $type = $field->getType()->getNullableType(); |
|
454 | + $type = $field->getType()->getNullableType(); |
|
455 | 455 | $resolveInfo = new ResolveInfo( |
456 | 456 | $field, |
457 | 457 | $ast instanceof AstQuery ? $ast->getFields() : [], |