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 Setup Failed
Pull Request — master (#1048)
by Vincent
05:59
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
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
     public static function resolveQueryEnumAsInput($enumParam = null, $enumParam2 = null)
40 40
     {
41
-        return (EnumPhp::VALUE2 === $enumParam  && EnumPhpBacked::VALUE3 === $enumParam2) ? 'OK' : 'KO';
41
+        return (EnumPhp::VALUE2 === $enumParam && EnumPhpBacked::VALUE3 === $enumParam2) ? 'OK' : 'KO';
42 42
     }
43 43
 
44 44
     public function testEnumLiteralParsedAsPhpEnum(): void
Please login to merge, or discard this patch.