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
Push — master ( 9f6555...a8c566 )
by Jérémiah
10:19 queued 15s
created
src/Validator/InputValidator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * @throws ArgumentsValidationException
65 65
      */
66
-    public function validate(string|array $groups = null, bool $throw = true): ?ConstraintViolationListInterface
66
+    public function validate(string | array $groups = null, bool $throw = true): ?ConstraintViolationListInterface
67 67
     {
68 68
         $rootNode = new ValidationNode(
69 69
             $this->info->parentType,
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
         return $rootObject;
210 210
     }
211 211
 
212
-    private static function isListOfType(GeneratedTypeInterface|ListOfType|NonNull $type): bool
212
+    private static function isListOfType(GeneratedTypeInterface | ListOfType | NonNull $type): bool
213 213
     {
214 214
         if ($type instanceof ListOfType || ($type instanceof NonNull && $type->getWrappedType() instanceof ListOfType)) {
215 215
             return true;
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
         return false;
219 219
     }
220 220
 
221
-    private function createCollectionNode(array $values, ObjectType|InputObjectType $type, ValidationNode $parent): array
221
+    private function createCollectionNode(array $values, ObjectType | InputObjectType $type, ValidationNode $parent): array
222 222
     {
223 223
         $collection = [];
224 224
 
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
         return $collection;
230 230
     }
231 231
 
232
-    private function createObjectNode(array $value, ObjectType|InputObjectType $type, ValidationNode $parent): ValidationNode
232
+    private function createObjectNode(array $value, ObjectType | InputObjectType $type, ValidationNode $parent): ValidationNode
233 233
     {
234 234
         /** @phpstan-ignore-next-line */
235 235
         $classValidation = static::normalizeConfig($type->config['validation'] ?? []);
Please login to merge, or discard this patch.