We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | public function getBuilder(string $name, ?string $queryAlias, string $mutationAlias = null, string $subscriptionAlias = null, array $types = []): Closure |
27 | 27 | { |
28 | - return function () use ($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types): ExtensibleSchema { |
|
28 | + return function () use ($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types) : ExtensibleSchema { |
|
29 | 29 | static $schema = null; |
30 | 30 | if (null === $schema) { |
31 | 31 | $schema = $this->create($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | $options['test_case'] ??= ''; |
77 | 77 | |
78 | - $env = $options['environment'] ?? 'test' . strtolower($options['test_case']); |
|
78 | + $env = $options['environment'] ?? 'test'.strtolower($options['test_case']); |
|
79 | 79 | $debug = $options['debug'] ?? true; |
80 | 80 | |
81 | 81 | return new static::$class($env, $debug, $options['test_case']); |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | public static function setUpBeforeClass(): void |
88 | 88 | { |
89 | 89 | $fs = new Filesystem(); |
90 | - $fs->remove(sys_get_temp_dir() . '/OverblogGraphQLBundle/'); |
|
90 | + $fs->remove(sys_get_temp_dir().'/OverblogGraphQLBundle/'); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | protected function tearDown(): void |