Passed
Push — 6.0 ( cf7b98 )
by Elias
01:57 queued 45s
created
tests/Kernel/TestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 {
12 12
     public function registerBundles(): iterable
13 13
     {
14
-        $bundles = include __DIR__ . '/../../vendor/akeneo/pim-community-dev/config/bundles.php';
15
-        $bundles += include __DIR__ . '/config/bundles.php';
14
+        $bundles = include __DIR__.'/../../vendor/akeneo/pim-community-dev/config/bundles.php';
15
+        $bundles += include __DIR__.'/config/bundles.php';
16 16
 
17 17
         foreach ($bundles as $class => $envs) {
18 18
             if ($envs[$this->environment] ?? $envs['all'] ?? false) {
Please login to merge, or discard this patch.
src/Normalizer/AttributeOptionNormalizer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $normalizedValues = $this->baseNormalizer->normalize($object, $format, $context);
26 26
 
27 27
         /**
28
- * @var AttributeOption $object
28
+         * @var AttributeOption $object
29 29
 */
30 30
         if ($object->isTableAttribute()) {
31 31
             $normalizedValues['type'] = $object->getType();
Please login to merge, or discard this patch.
src/Validator/ConstraintFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      *
66 66
      * @return Constraint
67 67
      */
68
-    private function createInstance(string $class, int|array|string|null $params): Constraint
68
+    private function createInstance(string $class, int | array | string | null $params): Constraint
69 69
     {
70 70
         if (false === class_exists($class)) {
71 71
             $class = '\\Symfony\\Component\\Validator\\Constraints\\'.$class;
Please login to merge, or discard this patch.
src/Validator/ConstraintGuesser/TableGuesser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         $fieldConstraints = [];
45 45
         /**
46
- * @var AttributeOption $option
46
+         * @var AttributeOption $option
47 47
 */
48 48
         // DocBlock of getOptions() claims to be only ArrayAccess, but Options are a Doctrine Collection
49 49
         foreach ($attribute->getOptions() as $option) {
Please login to merge, or discard this patch.