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

Completed
Pull Request — master (#750)
by Timur
22:37
created
src/Validator/Constraints/ExpressionValidator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@
 block discarded – undo
55 55
 
56 56
         if (!$this->expressionLanguage->evaluate($constraint->expression, $variables)) {
57 57
             $this->context->buildViolation($constraint->message)
58
-                          ->setParameter('{{ value }}', $this->formatValue($value, self::OBJECT_TO_STRING))
59
-                          ->setCode(Expression::EXPRESSION_FAILED_ERROR)
60
-                          ->addViolation();
58
+                            ->setParameter('{{ value }}', $this->formatValue($value, self::OBJECT_TO_STRING))
59
+                            ->setCode(Expression::EXPRESSION_FAILED_ERROR)
60
+                            ->addViolation();
61 61
         }
62 62
     }
63 63
 }
Please login to merge, or discard this patch.
src/Hydrator/Hydrator.php 1 patch
Indentation   +7 added lines, -9 removed lines patch added patch discarded remove patch
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
             if ($this->propertyAccessor->isWritable($model, $targetField)) {
130 130
 
131 131
                 $resultValue = $this->resolveConverter(
132
-                   $modelName,
133
-                   $targetField,
134
-                   $fieldValue,
135
-                   $modelReflection,
136
-                   $fieldObject
137
-               );
132
+                    $modelName,
133
+                    $targetField,
134
+                    $fieldValue,
135
+                    $modelReflection,
136
+                    $fieldObject
137
+                );
138 138
 
139 139
                 $this->propertyAccessor->setValue(
140 140
                     $model,
@@ -398,6 +398,4 @@  discard block
 block discarded – undo
398 398
             }
399 399
         }
400 400
 
401
-        return $mapping;
402
-    }
403
-}
401
+        return $mapping
404 402
\ No newline at end of file
Please login to merge, or discard this patch.