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 (#969)
by
unknown
01:38
created
src/Request/Executor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * @param array|ArrayObject|object|null $rootValue
130 130
      */
131
-    public function execute(?string $schemaName, array $request, $rootValue = null, bool $async = false): ExecutionResult|Promise
131
+    public function execute(?string $schemaName, array $request, $rootValue = null, bool $async = false): ExecutionResult | Promise
132 132
     {
133 133
         $schema = $this->getSchema($schemaName);
134 134
         /** @var string $schemaName */
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                 $executorArgumentsEvent->getOperationName(),
158 158
                 $this->defaultFieldResolver
159 159
             )->then(
160
-                fn ($result) => $this->postExecute($result, $executorArgumentsEvent)
160
+                fn($result) => $this->postExecute($result, $executorArgumentsEvent)
161 161
             );
162 162
         }
163 163
 
Please login to merge, or discard this patch.
src/Controller/GraphController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         }
82 82
     }
83 83
 
84
-    private function processQuery(Request $request, ?string $schemaName, bool $batched, bool $async = false): array|Promise
84
+    private function processQuery(Request $request, ?string $schemaName, bool $batched, bool $async = false): array | Promise
85 85
     {
86 86
         if ($batched) {
87 87
             $payload = $this->processBatchQuery($request, $schemaName);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         return $payloads;
111 111
     }
112 112
 
113
-    private function processNormalQuery(Request $request, string $schemaName = null, bool $async = false): array|Promise
113
+    private function processNormalQuery(Request $request, string $schemaName = null, bool $async = false): array | Promise
114 114
     {
115 115
         $params = $this->requestParser->parse($request);
116 116
 
Please login to merge, or discard this patch.