@@ -131,7 +131,7 @@ |
||
| 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; |
@@ -250,9 +250,9 @@ discard block |
||
| 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 |
||
| 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: |
@@ -111,7 +111,7 @@ |
||
| 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 | |
@@ -206,7 +206,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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( |
@@ -170,7 +170,7 @@ |
||
| 170 | 170 | |
| 171 | 171 | foreach ($dsl['references'] as $key => $reference) { |
| 172 | 172 | // BC |
| 173 | - if (is_array($reference) && isset($reference['json_path']) && !isset($reference['attribute'] )) { |
|
| 173 | + if (is_array($reference) && isset($reference['json_path']) && !isset($reference['attribute'])) { |
|
| 174 | 174 | $reference['attribute'] = $reference['json_path']; |
| 175 | 175 | } |
| 176 | 176 | $reference = $this->parseReferenceDefinition($key, $reference); |
@@ -778,7 +778,7 @@ |
||
| 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 | ) |
@@ -268,10 +268,10 @@ |
||
| 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, |
@@ -445,7 +445,7 @@ |
||
| 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'])) { |
@@ -248,10 +248,10 @@ |
||
| 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, |