Passed
Branch main (a5ccba)
by Gaetano
04:40
created
Core/Executor/ContentManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -778,7 +778,7 @@
 block discarded – undo
778 778
             },
779 779
             array_filter(
780 780
                 $this->repository->getContentLanguageService()->loadLanguages(),
781
-                function ($language) {
781
+                function($language) {
782 782
                     return $language->enabled;
783 783
                 }
784 784
             )
Please login to merge, or discard this patch.
Core/Executor/ObjectStateManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -268,10 +268,10 @@
 block discarded – undo
268 268
                 $names = array();
269 269
                 $descriptions = array();
270 270
                 foreach ($objectState->languageCodes as $languageCode) {
271
-                    $names[$languageCode] =  $objectState->getName($languageCode);
271
+                    $names[$languageCode] = $objectState->getName($languageCode);
272 272
                 }
273 273
                 foreach ($objectState->languageCodes as $languageCode) {
274
-                    $descriptions[$languageCode] =  $objectState->getDescription($languageCode);
274
+                    $descriptions[$languageCode] = $objectState->getDescription($languageCode);
275 275
                 }
276 276
                 $groupData = array_merge(
277 277
                     $groupData,
Please login to merge, or discard this patch.
Core/Executor/RoleManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -445,7 +445,7 @@
 block discarded – undo
445 445
     protected function sortPolicyLimitationsDefinitions(array &$limitations)
446 446
     {
447 447
         usort($limitations, function($l1, $l2) {
448
-            if (($iComp = strcmp($l1['identifier'], $l2['identifier'])) != 0 ) {
448
+            if (($iComp = strcmp($l1['identifier'], $l2['identifier'])) != 0) {
449 449
                 return $iComp;
450 450
             }
451 451
             if (is_int($l1['values']) || is_float($l1['values'])) {
Please login to merge, or discard this patch.
Core/Executor/ObjectStateGroupManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -248,10 +248,10 @@
 block discarded – undo
248 248
                 $names = array();
249 249
                 $descriptions = array();
250 250
                 foreach ($objectStateGroup->languageCodes as $languageCode) {
251
-                    $names[$languageCode] =  $objectStateGroup->getName($languageCode);
251
+                    $names[$languageCode] = $objectStateGroup->getName($languageCode);
252 252
                 }
253 253
                 foreach ($objectStateGroup->languageCodes as $languageCode) {
254
-                    $descriptions[$languageCode] =  $objectStateGroup->getDescription($languageCode);
254
+                    $descriptions[$languageCode] = $objectStateGroup->getDescription($languageCode);
255 255
                 }
256 256
                 $groupData = array_merge(
257 257
                     $groupData,
Please login to merge, or discard this patch.
Core/Executor/TagManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 
166 166
         // sort tags by depth so that there will be no errors in case we are deleting parent and child
167 167
         $tagsCollection = $tagsCollection->getArrayCopy();
168
-        uasort($tagsCollection, function ($t1, $t2) {
168
+        uasort($tagsCollection, function($t1, $t2) {
169 169
             if ($t1->depth == $t2->depth) return 0;
170 170
             return ($t1->depth > $t2->depth) ? -1 : 1;
171 171
         });
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
             case 'create':
273 273
                 // sort top to bottom
274 274
                 $tagCollection = $tagCollection->getArrayCopy();
275
-                uasort($tagCollection, function ($t1, $t2) {
275
+                uasort($tagCollection, function($t1, $t2) {
276 276
                     if ($t1->depth == $t2->depth) return 0;
277 277
                     return ($t1->depth > $t2->depth) ? 1 : -1;
278 278
                 });
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
             case 'delete':
281 281
                 // sort bottom to top
282 282
                 $tagCollection = $tagCollection->getArrayCopy();
283
-                uasort($tagCollection, function ($t1, $t2) {
283
+                uasort($tagCollection, function($t1, $t2) {
284 284
                     if ($t1->depth == $t2->depth) return 0;
285 285
                     return ($t1->depth > $t2->depth) ? -1 : 1;
286 286
                 });
Please login to merge, or discard this patch.
Command/StatusCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
 
233 233
         if ($input->getOption('todo')) {
234 234
             foreach ($data as $migrationData) {
235
-                $output->writeln("$migrationData", OutputInterface::OUTPUT_RAW|OutputInterface::VERBOSITY_QUIET);
235
+                $output->writeln("$migrationData", OutputInterface::OUTPUT_RAW | OutputInterface::VERBOSITY_QUIET);
236 236
             }
237 237
             return 0;
238 238
         }
Please login to merge, or discard this patch.
Core/Executor/RepositoryExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
 
217 217
         $multivalued = ($this->expectedResultsType($step) == self::$RESULT_TYPE_MULTIPLE);
218 218
 
219
-        if ($item instanceof AbstractCollection  || is_array($item)) {
219
+        if ($item instanceof AbstractCollection || is_array($item)) {
220 220
             $items = $item;
221 221
         } else {
222 222
             $items = array($item);
Please login to merge, or discard this patch.
Core/Executor/MigrationExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
                     return $this->matchConditions($values);
179 179
 
180 180
                 default:
181
-                    throw new InvalidStepDefinitionException("Unknown until condition: '$key' when suspending a migration ".var_export($conditions, true));
181
+                    throw new InvalidStepDefinitionException("Unknown until condition: '$key' when suspending a migration " . var_export($conditions, true));
182 182
             }
183 183
         }
184 184
     }
Please login to merge, or discard this patch.
Core/MigrationService.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
         }
311 311
 
312 312
         if ($migrationDefinition->status == MigrationDefinition::STATUS_INVALID) {
313
-            throw new MigrationBundleException("Can not execute " . $this->getEntityName($migrationDefinition). " '{$migrationDefinition->name}': {$migrationDefinition->parsingError}");
313
+            throw new MigrationBundleException("Can not execute " . $this->getEntityName($migrationDefinition) . " '{$migrationDefinition->name}': {$migrationDefinition->parsingError}");
314 314
         }
315 315
 
316 316
         /// @todo add support for setting in $migrationContext a userContentType, userGroupContentType ?
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 
345 345
         try {
346 346
 
347
-            $i = $stepOffset+1;
347
+            $i = $stepOffset + 1;
348 348
             $finalStatus = Migration::STATUS_DONE;
349 349
             $finalMessage = null;
350 350
 
@@ -481,12 +481,12 @@  discard block
 block discarded – undo
481 481
     public function resumeMigration(Migration $migration, $useTransaction = true, array $forcedReferences = array())
482 482
     {
483 483
         if ($migration->status != Migration::STATUS_SUSPENDED) {
484
-            throw new MigrationBundleException("Can not resume ".$this->getEntityName($migration)." '{$migration->name}': it is not in suspended status");
484
+            throw new MigrationBundleException("Can not resume " . $this->getEntityName($migration) . " '{$migration->name}': it is not in suspended status");
485 485
         }
486 486
 
487 487
         $migrationDefinitions = $this->getMigrationsDefinitions(array($migration->path));
488 488
         if (!count($migrationDefinitions)) {
489
-            throw new MigrationBundleException("Can not resume ".$this->getEntityName($migration)." '{$migration->name}': its definition is missing");
489
+            throw new MigrationBundleException("Can not resume " . $this->getEntityName($migration) . " '{$migration->name}': its definition is missing");
490 490
         }
491 491
 
492 492
         $defs = $migrationDefinitions->getArrayCopy();
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 
495 495
         $migrationDefinition = $this->parseMigrationDefinition($migrationDefinition);
496 496
         if ($migrationDefinition->status == MigrationDefinition::STATUS_INVALID) {
497
-            throw new MigrationBundleException("Can not resume ".$this->getEntityName($migration)." '{$migration->name}': {$migrationDefinition->parsingError}");
497
+            throw new MigrationBundleException("Can not resume " . $this->getEntityName($migration) . " '{$migration->name}': {$migrationDefinition->parsingError}");
498 498
         }
499 499
 
500 500
         // restore context
@@ -507,11 +507,11 @@  discard block
 block discarded – undo
507 507
         }
508 508
 
509 509
         if (!isset($this->migrationContext[$migration->name])) {
510
-            throw new MigrationBundleException("Can not resume ".$this->getEntityName($migration)." '{$migration->name}': the stored context is missing");
510
+            throw new MigrationBundleException("Can not resume " . $this->getEntityName($migration) . " '{$migration->name}': the stored context is missing");
511 511
         }
512 512
         $restoredContext = $this->migrationContext[$migration->name];
513 513
         if (!is_array($restoredContext) || !isset($restoredContext['context']) || !isset($restoredContext['step'])) {
514
-            throw new MigrationBundleException("Can not resume ".$this->getEntityName($migration)." '{$migration->name}': the stored context is invalid");
514
+            throw new MigrationBundleException("Can not resume " . $this->getEntityName($migration) . " '{$migration->name}': the stored context is invalid");
515 515
         }
516 516
 
517 517
         // update migration status
Please login to merge, or discard this patch.