Passed
Pull Request — develop (#54)
by Mario
02:18
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   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -127,17 +127,17 @@  discard block
 block discarded – undo
127 127
                 "type": "array",
128 128
                 "additionalProperties": false,
129 129
                 "properties": {
130
-                    "assets": ' . $property . ',
131
-                    "authentication": ' . $property . ',
132
-                    "cases": ' . $property . ',
133
-                    "cms": ' . $property . ',
134
-                    "forms": ' . $property . ',
135
-                    "identities": ' . $property . ',
136
-                    "microservice": ' . $property . ',
137
-                    "records": ' . $property . ',
138
-                    "services": ' . $property . ',
139
-                    "tasks": ' . $property . ',
140
-                    "tenants": ' . $property . '
130
+                    "assets": ' . $property.',
131
+                    "authentication": ' . $property.',
132
+                    "cases": ' . $property.',
133
+                    "cms": ' . $property.',
134
+                    "forms": ' . $property.',
135
+                    "identities": ' . $property.',
136
+                    "microservice": ' . $property.',
137
+                    "records": ' . $property.',
138
+                    "services": ' . $property.',
139
+                    "tasks": ' . $property.',
140
+                    "tenants": ' . $property.'
141 141
                 }
142 142
             }
143 143
         ');
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
             foreach ($validator->getErrors() as $error) {
149 149
                 $this->context
150 150
                     ->buildViolation($error['message'])
151
-                    ->atPath('permissions.' . $error['property'])
151
+                    ->atPath('permissions.'.$error['property'])
152 152
                     ->addViolation();
153 153
             }
154 154
         }
Please login to merge, or discard this patch.