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/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.