We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | enum EnumPhpBacked: string |
8 | 8 | { |
9 | - case VALUE1 = 'v1' ; |
|
9 | + case VALUE1 = 'v1'; |
|
10 | 10 | case VALUE2 = 'v2'; |
11 | 11 | case VALUE3 = 'v3'; |
12 | 12 | } |
@@ -41,7 +41,7 @@ |
||
41 | 41 | |
42 | 42 | public static function resolveQueryEnumAsInput(mixed $enumParam = null, mixed $enumParam2 = null): string |
43 | 43 | { |
44 | - return (EnumPhp::VALUE2 === $enumParam && EnumPhpBacked::VALUE3 === $enumParam2) ? 'OK' : 'KO'; |
|
44 | + return (EnumPhp::VALUE2 === $enumParam && EnumPhpBacked::VALUE3 === $enumParam2) ? 'OK' : 'KO'; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | public function testEnumLiteralParsedAsPhpEnum(): void |