@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | public function __construct($config = []) |
25 | 25 | { |
26 | 26 | if (!array_key_exists('query', $config)) { |
27 | - $config['query'] = new InternalSchemaQueryObject(['name' => $this->getName($config) . 'Query']); |
|
27 | + $config['query'] = new InternalSchemaQueryObject(['name' => $this->getName($config).'Query']); |
|
28 | 28 | } |
29 | 29 | if (!array_key_exists('mutation', $config)) { |
30 | - $config['mutation'] = new InternalSchemaMutationObject(['name' => $this->getName($config) . 'Mutation']); |
|
30 | + $config['mutation'] = new InternalSchemaMutationObject(['name' => $this->getName($config).'Mutation']); |
|
31 | 31 | } |
32 | 32 | if (!array_key_exists('types', $config)) { |
33 | 33 | $config['types'] = []; |
@@ -80,6 +80,6 @@ discard block |
||
80 | 80 | { |
81 | 81 | $defaultName = 'RootSchema'; |
82 | 82 | |
83 | - return isset($config["name"])? $config["name"] : $defaultName; |
|
83 | + return isset($config["name"]) ? $config["name"] : $defaultName; |
|
84 | 84 | } |
85 | 85 | } |
@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (is_file(__DIR__ . '/../../../../../vendor/autoload.php')) { |
|
4 | - require_once __DIR__ . '/../../../../../vendor/autoload.php'; |
|
3 | +if (is_file(__DIR__.'/../../../../../vendor/autoload.php')) { |
|
4 | + require_once __DIR__.'/../../../../../vendor/autoload.php'; |
|
5 | 5 | } |
6 | -require_once __DIR__ . '/../../vendor/autoload.php'; |
|
7 | -require_once __DIR__ . '/Schema/Type/BookType.php'; |
|
8 | -require_once __DIR__ . '/Schema/Type/AuthorType.php'; |
|
9 | -require_once __DIR__ . '/Schema/Type/CategoryType.php'; |
|
10 | -require_once __DIR__ . '/Schema/Field/Book/RecentBooksField.php'; |
|
11 | -require_once __DIR__ . '/Schema/Field/CategoriesField.php'; |
|
12 | -require_once __DIR__ . '/DataProvider.php'; |
|
13 | -require_once __DIR__ . '/Schema/BookStoreSchema.php'; |
|
6 | +require_once __DIR__.'/../../vendor/autoload.php'; |
|
7 | +require_once __DIR__.'/Schema/Type/BookType.php'; |
|
8 | +require_once __DIR__.'/Schema/Type/AuthorType.php'; |
|
9 | +require_once __DIR__.'/Schema/Type/CategoryType.php'; |
|
10 | +require_once __DIR__.'/Schema/Field/Book/RecentBooksField.php'; |
|
11 | +require_once __DIR__.'/Schema/Field/CategoriesField.php'; |
|
12 | +require_once __DIR__.'/DataProvider.php'; |
|
13 | +require_once __DIR__.'/Schema/BookStoreSchema.php'; |
@@ -24,12 +24,12 @@ |
||
24 | 24 | |
25 | 25 | public function resolve($value, array $args, ResolveInfo $info) |
26 | 26 | { |
27 | - return new DeferredResolver(function () use ($value) { |
|
28 | - $id = empty($value['id']) ? "1" : $value['id'] . ".1"; |
|
27 | + return new DeferredResolver(function() use ($value) { |
|
28 | + $id = empty($value['id']) ? "1" : $value['id'].".1"; |
|
29 | 29 | |
30 | 30 | return [ |
31 | 31 | 'id' => $id, |
32 | - 'title' => 'Category ' . $id, |
|
32 | + 'title' => 'Category '.$id, |
|
33 | 33 | 'authors' => [ |
34 | 34 | [ |
35 | 35 | 'id' => 'author1', |
@@ -24,7 +24,7 @@ |
||
24 | 24 | $config->getQuery()->addFields([ |
25 | 25 | 'authors' => [ |
26 | 26 | 'type' => new ListType(new AuthorType()), |
27 | - 'resolve' => function () { |
|
27 | + 'resolve' => function() { |
|
28 | 28 | return DataProvider::getAuthors(); |
29 | 29 | } |
30 | 30 | ], |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $key = md5(serialize($ids)); |
59 | 59 | $this->buffer[$key] = $ids; |
60 | 60 | |
61 | - return function () use ($key) { |
|
61 | + return function() use ($key) { |
|
62 | 62 | return $this->fetch($key); |
63 | 63 | }; |
64 | 64 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | [ |
106 | 106 | 'name' => 'name', |
107 | 107 | 'type' => new StringType(), |
108 | - 'resolve' => function ($value) { |
|
108 | + 'resolve' => function($value) { |
|
109 | 109 | return $value['name']; |
110 | 110 | }, |
111 | 111 | ] |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | [ |
118 | 118 | 'name' => 'friends', |
119 | 119 | 'type' => new ListType(new DeferredUserType($this->database)), |
120 | - 'resolve' => function ($value) { |
|
120 | + 'resolve' => function($value) { |
|
121 | 121 | return new DeferredResolver( |
122 | 122 | $this->database->add($value['friends']) |
123 | 123 | ); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | [ |
132 | 132 | 'name' => 'foes', |
133 | 133 | 'type' => new ListType(new DeferredUserType($this->database)), |
134 | - 'resolve' => function ($value) { |
|
134 | + 'resolve' => function($value) { |
|
135 | 135 | return new DeferredResolver( |
136 | 136 | $this->database->add($value['foes']) |
137 | 137 | ); |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | [ |
152 | 152 | 'name' => 'users', |
153 | 153 | 'type' => new ListType(new DeferredUserType($buffer)), |
154 | - 'resolve' => function ($value, $args) use ($buffer) { |
|
154 | + 'resolve' => function($value, $args) use ($buffer) { |
|
155 | 155 | return new DeferredResolver($buffer->add($args['ids'])); |
156 | 156 | }, |
157 | 157 | ] |
@@ -52,7 +52,7 @@ |
||
52 | 52 | if ($fieldConfig instanceof FieldInterface) { |
53 | 53 | $this->fields[$fieldConfig->getName()] = $fieldConfig; |
54 | 54 | continue; |
55 | - } elseif($fieldConfig instanceof InputFieldInterface) { |
|
55 | + } elseif ($fieldConfig instanceof InputFieldInterface) { |
|
56 | 56 | $this->fields[$fieldConfig->getName()] = $fieldConfig; |
57 | 57 | continue; |
58 | 58 | } else { |
@@ -107,7 +107,7 @@ |
||
107 | 107 | |
108 | 108 | public function testFieldWithInputFieldArgument() |
109 | 109 | { |
110 | - $schema = new Schema([ |
|
110 | + $schema = new Schema([ |
|
111 | 111 | 'query' => new ObjectType([ |
112 | 112 | 'name' => 'RootQuery', |
113 | 113 | 'fields' => [ |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | -if (is_file(__DIR__ . '/../../../../../vendor/autoload.php')) { |
|
3 | - require_once __DIR__ . '/../../../../../vendor/autoload.php'; |
|
2 | +if (is_file(__DIR__.'/../../../../../vendor/autoload.php')) { |
|
3 | + require_once __DIR__.'/../../../../../vendor/autoload.php'; |
|
4 | 4 | } |
5 | 5 | |
6 | -require_once __DIR__ . '/../../vendor/autoload.php'; |
|
7 | -require_once __DIR__ . '/Schema/FactionType.php'; |
|
8 | -require_once __DIR__ . '/Schema/ShipType.php'; |
|
9 | -require_once __DIR__ . '/Schema/TestDataProvider.php'; |
|
10 | -require_once __DIR__ . '/Schema/StarWarsRelaySchema.php'; |
|
6 | +require_once __DIR__.'/../../vendor/autoload.php'; |
|
7 | +require_once __DIR__.'/Schema/FactionType.php'; |
|
8 | +require_once __DIR__.'/Schema/ShipType.php'; |
|
9 | +require_once __DIR__.'/Schema/TestDataProvider.php'; |
|
10 | +require_once __DIR__.'/Schema/StarWarsRelaySchema.php'; |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | } |
10 | 10 | if ($_SERVER['REQUEST_URI'] == '/graphiql.css') { |
11 | 11 | header('Content-Type: text/css'); |
12 | - readfile(__DIR__ . '/../GraphiQL/graphiql.css'); |
|
12 | + readfile(__DIR__.'/../GraphiQL/graphiql.css'); |
|
13 | 13 | die(); |
14 | 14 | } |
15 | 15 | |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | use Youshido\GraphQL\Execution\Processor; |
18 | 18 | use Youshido\GraphQL\Schema\Schema; |
19 | 19 | |
20 | -require_once __DIR__ . '/schema-bootstrap.php'; |
|
20 | +require_once __DIR__.'/schema-bootstrap.php'; |
|
21 | 21 | /** @var Schema $schema */ |
22 | 22 | $schema = new StarWarsRelaySchema(); |
23 | 23 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $variables = isset($requestData['variables']) ? $requestData['variables'] : null; |
35 | 35 | |
36 | 36 | if (empty($payload)) { |
37 | - $GraphiQLData = file_get_contents(__DIR__ . '/../GraphiQL/index.html'); |
|
37 | + $GraphiQLData = file_get_contents(__DIR__.'/../GraphiQL/index.html'); |
|
38 | 38 | echo $GraphiQLData; |
39 | 39 | die(); |
40 | 40 | } |