@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | 'fields' => [ |
54 | 54 | 'empty' => [ |
55 | 55 | 'type' => new StringType(), |
56 | - 'resolve' => function () { |
|
56 | + 'resolve' => function() { |
|
57 | 57 | return null; |
58 | 58 | } |
59 | 59 | ] |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | ])) |
73 | 73 | ], |
74 | 74 | 'type' => new BooleanType(), |
75 | - 'resolve' => function ($object, $args) { |
|
75 | + 'resolve' => function($object, $args) { |
|
76 | 76 | return true; |
77 | 77 | } |
78 | 78 | ] |
@@ -98,14 +98,14 @@ discard block |
||
98 | 98 | ); |
99 | 99 | } |
100 | 100 | |
101 | - public function testNullableInputWithNonNull(){ |
|
101 | + public function testNullableInputWithNonNull() { |
|
102 | 102 | $processor = new Processor(new Schema([ |
103 | 103 | 'query' => new ObjectType([ |
104 | 104 | 'name' => 'RootQuery', |
105 | 105 | 'fields' => [ |
106 | 106 | 'empty' => [ |
107 | 107 | 'type' => new StringType(), |
108 | - 'resolve' => function () { |
|
108 | + 'resolve' => function() { |
|
109 | 109 | return null; |
110 | 110 | } |
111 | 111 | ] |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | ]) |
125 | 125 | ], |
126 | 126 | 'type' => new BooleanType(), |
127 | - 'resolve' => function ($object, $args) { |
|
127 | + 'resolve' => function($object, $args) { |
|
128 | 128 | return true; |
129 | 129 | } |
130 | 130 | ] |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | 'fields' => [ |
149 | 149 | 'empty' => [ |
150 | 150 | 'type' => new StringType(), |
151 | - 'resolve' => function () { |
|
151 | + 'resolve' => function() { |
|
152 | 152 | } |
153 | 153 | ], |
154 | 154 | ] |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | ] |
172 | 172 | ]) |
173 | 173 | ], |
174 | - 'resolve' => function () { |
|
174 | + 'resolve' => function() { |
|
175 | 175 | return 'success message'; |
176 | 176 | } |
177 | 177 | ] |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | use Youshido\GraphQL\Execution\Processor; |
6 | 6 | use Youshido\GraphQL\Schema; |
7 | 7 | |
8 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
8 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
9 | 9 | /** @var Schema\AbstractSchema $schema */ |
10 | 10 | $schema = new StarWarsRelaySchema(); |
11 | 11 | |
@@ -48,4 +48,4 @@ discard block |
||
48 | 48 | '; |
49 | 49 | |
50 | 50 | $processor->processPayload($payload, ['names_0' => ['rebels']]); |
51 | -echo json_encode($processor->getResponseData()) . "\n"; |
|
51 | +echo json_encode($processor->getResponseData())."\n"; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | use Youshido\GraphQL\Execution\Processor; |
12 | 12 | use Youshido\GraphQL\Schema\Schema; |
13 | 13 | |
14 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
14 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
15 | 15 | /** @var Schema $schema */ |
16 | 16 | $schema = new StarWarsRelaySchema(); |
17 | 17 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | use Youshido\GraphQL\Execution\Processor; |
7 | 7 | use Youshido\GraphQL\Schema\Schema; |
8 | 8 | |
9 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
9 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
10 | 10 | /** @var Schema $schema */ |
11 | 11 | $schema = new BlogSchema(); |
12 | 12 | |
@@ -18,4 +18,4 @@ discard block |
||
18 | 18 | $payload = 'mutation { createPost(author: "Alex", post: {title: "Hey, this is my new post", summary: "my post" }) { title } }'; |
19 | 19 | |
20 | 20 | $processor->processPayload($payload); |
21 | -echo json_encode($processor->getResponseData()) . "\n"; |
|
21 | +echo json_encode($processor->getResponseData())."\n"; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | use Youshido\GraphQL\Execution\Processor; |
12 | 12 | use Youshido\GraphQL\Schema\Schema; |
13 | 13 | |
14 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
14 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
15 | 15 | /** @var Schema $schema */ |
16 | 16 | $schema = new BlogSchema(); |
17 | 17 |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | public function testConfigNoFields() |
32 | 32 | { |
33 | 33 | ConfigValidator::getInstance()->assertValidConfig( |
34 | - new InterfaceTypeConfig(['name' => 'Test', 'resolveType' => function () { }], null, true) |
|
34 | + new InterfaceTypeConfig(['name' => 'Test', 'resolveType' => function() { }], null, true) |
|
35 | 35 | ); |
36 | 36 | } |
37 | 37 | |
@@ -59,11 +59,11 @@ discard block |
||
59 | 59 | $interfaceConfig = new InterfaceTypeConfig([ |
60 | 60 | 'name' => 'Test', |
61 | 61 | 'fields' => ['id' => new IntType()], |
62 | - 'resolveType' => function ($object) { |
|
62 | + 'resolveType' => function($object) { |
|
63 | 63 | return $object->getType(); |
64 | 64 | } |
65 | 65 | ], null, true); |
66 | - $object = new ObjectType(['name' => 'User', 'fields' => ['name' => new StringType()]]); |
|
66 | + $object = new ObjectType(['name' => 'User', 'fields' => ['name' => new StringType()]]); |
|
67 | 67 | |
68 | 68 | $this->assertEquals($interfaceConfig->getName(), 'Test'); |
69 | 69 | $this->assertEquals($interfaceConfig->resolveType($object), $object->getType()); |
@@ -30,7 +30,7 @@ |
||
30 | 30 | 'from' => new DateTimeType('Y-m-d H:i:s'), |
31 | 31 | 'fromtz' => new DateTimeTzType(), |
32 | 32 | ], |
33 | - 'resolve' => function ($source, $args) { |
|
33 | + 'resolve' => function($source, $args) { |
|
34 | 34 | return sprintf('Result with %s date and %s tz', |
35 | 35 | empty($args['from']) ? 'default' : $args['from']->format('Y-m-d H:i:s'), |
36 | 36 | empty($args['fromtz']) ? 'default' : $args['fromtz']->format('r') |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | $authors = []; |
44 | 44 | while (count($authors) < rand(1, 4)) { |
45 | 45 | $authors[] = [ |
46 | - 'name' => 'Author ' . substr(md5(time()), 0, 4) |
|
46 | + 'name' => 'Author '.substr(md5(time()), 0, 4) |
|
47 | 47 | ]; |
48 | 48 | } |
49 | 49 | $data[] = [ |
50 | 50 | 'id' => $i, |
51 | - 'title' => 'Title of ' . $i, |
|
51 | + 'title' => 'Title of '.$i, |
|
52 | 52 | 'authors' => $authors, |
53 | 53 | ]; |
54 | 54 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | return true; |
70 | 70 | $p->processPayload('{ posts { id, title, authors { name } } }'); |
71 | 71 | $res = $p->getResponseData(); |
72 | - echo "Count: " . count($res['data']['posts']) . "\n"; |
|
72 | + echo "Count: ".count($res['data']['posts'])."\n"; |
|
73 | 73 | var_dump($res['data']['posts'][0]); |
74 | 74 | printf("Test Time: %04f\n", microtime(true) - $time); |
75 | 75 | } |
@@ -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 | ]) |