Passed
Push — main ( 2c998d...d5afb4 )
by Gaetano
08:40
created
Command/ResumeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 
132 132
         $time = microtime(true) - $start;
133 133
         $output->writeln("Resumed $executed migrations, failed $failed");
134
-        $output->writeln("Time taken: ".sprintf('%.3f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB');
134
+        $output->writeln("Time taken: " . sprintf('%.3f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB');
135 135
 
136 136
         if ($failed) {
137 137
             return 2;
Please login to merge, or discard this patch.
Command/MigrateCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
         $time = microtime(true) - $start;
251 251
         if ($input->getOption('separate-process')) {
252 252
             // in case of using subprocesses, we can not measure max memory used
253
-            $this->writeln("<info>Time taken: ".sprintf('%.3f', $time)." secs</info>");
253
+            $this->writeln("<info>Time taken: " . sprintf('%.3f', $time) . " secs</info>");
254 254
         } else {
255
-            $this->writeln("<info>Time taken: ".sprintf('%.3f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB</info>');
255
+            $this->writeln("<info>Time taken: " . sprintf('%.3f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB</info>');
256 256
         }
257 257
 
258 258
         return $failed;
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
             $builderArgs[] = '--no-debug';
485 485
         }
486 486
         if ($input->getOption('siteaccess')) {
487
-            $builderArgs[] = '--siteaccess='.$input->getOption('siteaccess');
487
+            $builderArgs[] = '--siteaccess=' . $input->getOption('siteaccess');
488 488
         }
489 489
         switch ($this->verbosity) {
490 490
             case OutputInterface::VERBOSITY_VERBOSE:
Please login to merge, or discard this patch.
Core/Matcher/UserMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         $users = [];
112 112
 
113 113
         foreach ($userIds as $userId) {
114
-            try{
114
+            try {
115 115
                 // return unique contents
116 116
                 $user = $this->repository->getUserService()->loadUser($userId);
117 117
 
Please login to merge, or discard this patch.
Core/StorageHandler/Database/Migration.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     public function endMigration(APIMigration $migration, $force = false)
207 207
     {
208 208
         if ($migration->status == APIMigration::STATUS_STARTED) {
209
-            throw new MigrationBundleException($this->getEntityName($migration)." '{$migration->name}' can not be ended as its status is 'started'...");
209
+            throw new MigrationBundleException($this->getEntityName($migration) . " '{$migration->name}' can not be ended as its status is 'started'...");
210 210
         }
211 211
 
212 212
         $this->createTableIfNeeded();
@@ -233,13 +233,13 @@  discard block
 block discarded – undo
233 233
         if (!is_array($existingMigrationData)) {
234 234
             // commit to release the lock
235 235
             $conn->commit();
236
-            throw new MigrationBundleException($this->getEntityName($migration)." '{$migration->name}' can not be ended as it is not found");
236
+            throw new MigrationBundleException($this->getEntityName($migration) . " '{$migration->name}' can not be ended as it is not found");
237 237
         }
238 238
 
239 239
         if (($existingMigrationData['status'] != APIMigration::STATUS_STARTED) && !$force) {
240 240
             // commit to release the lock
241 241
             $conn->commit();
242
-            throw new MigrationBundleException($this->getEntityName($migration)." '{$migration->name}' can not be ended as it is not executing");
242
+            throw new MigrationBundleException($this->getEntityName($migration) . " '{$migration->name}' can not be ended as it is not executing");
243 243
         }
244 244
 
245 245
         $conn->update(
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
         if (!is_array($existingMigrationData)) {
396 396
             // commit immediately, to release the lock and avoid deadlocks
397 397
             $conn->commit();
398
-            throw new MigrationBundleException($this->getEntityName($migration)." '{$migration->name}' can not be resumed as it is not found");
398
+            throw new MigrationBundleException($this->getEntityName($migration) . " '{$migration->name}' can not be resumed as it is not found");
399 399
         }
400 400
 
401 401
         // migration exists
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
         if ($existingMigrationData['status'] != APIMigration::STATUS_SUSPENDED) {
405 405
             // commit to release the lock
406 406
             $conn->commit();
407
-            throw new MigrationBundleException($this->getEntityName($migration)." '{$migration->name}' can not be resumed as it is not suspended");
407
+            throw new MigrationBundleException($this->getEntityName($migration) . " '{$migration->name}' can not be resumed as it is not suspended");
408 408
         }
409 409
 
410 410
         $migration = new APIMigration(
Please login to merge, or discard this patch.
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.
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.