Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Test Failed
Pull Request — master (#1048)
by Vincent
06:20
created
tests/Functional/EnumPhp/EnumPhpBacked.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
tests/Functional/EnumPhp/EnumPhpTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.