We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | /** @var EnumType $enumTypeWithDeprecatedValue */ |
| 24 | 24 | $enumTypeWithDeprecatedValue = $this->getType('EnumWithDeprecatedValue'); |
| 25 | 25 | $value = $enumTypeWithDeprecatedValue->getValues()[0]; |
| 26 | - $this->assertSame([ // @phpstan-ignore-line |
|
| 26 | + $this->assertSame([// @phpstan-ignore-line |
|
| 27 | 27 | 'deprecationReason' => 'Just because', |
| 28 | 28 | 'value' => 'foo', |
| 29 | 29 | 'name' => 'foo', |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | $this->expectExceptionMessage( |
| 23 | 23 | 'Enum class "invalid_class" does not exist.', |
| 24 | 24 | ); |
| 25 | - new PhpEnumType([ // @phpstan-ignore-line |
|
| 25 | + new PhpEnumType([// @phpstan-ignore-line |
|
| 26 | 26 | 'name' => 'MyEnum', |
| 27 | 27 | 'enumClass' => 'invalid_class', |
| 28 | 28 | ]); |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | private ?ResolverArgs $__resolverArgs; |
| 50 | 50 | |
| 51 | 51 | public function __construct( |
| 52 | - ObjectType|InputObjectType $type, |
|
| 52 | + ObjectType | InputObjectType $type, |
|
| 53 | 53 | string $field = null, |
| 54 | 54 | ValidationNode $parent = null, |
| 55 | 55 | ResolverArgs $resolverArgs = null |
@@ -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 |