Passed
Push — develop ( 7ea57b...9e9f0e )
by Mario
01:23
created
api/src/Migration/Version0_15_0.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
                 break;
383 383
 
384 384
             default:
385
-                $this->abortIf(true,'Migration cannot be executed on "'.$this->platform->getName().'".');
385
+                $this->abortIf(true, 'Migration cannot be executed on "'.$this->platform->getName().'".');
386 386
                 break;
387 387
         }
388 388
     }
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
                 break;
468 468
 
469 469
             default:
470
-                $this->abortIf(true,'Migration cannot be executed on "'.$this->platform->getName().'".');
470
+                $this->abortIf(true, 'Migration cannot be executed on "'.$this->platform->getName().'".');
471 471
                 break;
472 472
         }
473 473
     }
Please login to merge, or discard this patch.
api/src/Validator/Constraints/Role/Permissions/ValidValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
60 60
             if (!$this->serviceCollection->containsKey($service.'.access')) {
61 61
                 $this->context
62 62
                     ->buildViolation($constraint->serviceUndefined)
63
-                    ->setParameter('{{ service }}', '"' . $service . '"')
64
-                    ->atPath('permissions.' . $service)
63
+                    ->setParameter('{{ service }}', '"'.$service.'"')
64
+                    ->atPath('permissions.'.$service)
65 65
                     ->addViolation();
66 66
 
67 67
                 continue;
Please login to merge, or discard this patch.