Completed
Push — pac-89--debug-report ( edb11c )
by Marcus
04:32
created
src/Command/ImportConvertValueCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
              ->setDescription('Converts the value to the format expected by the given column')
55 55
              ->addArgument(InputArgumentKeysInterface::ENTITY_TYPE_CODE, InputArgument::REQUIRED, 'The entity type code to use, e. g. catalog_product')
56 56
              ->addArgument(InputArgumentKeysInterface::COLUMN, InputArgument::REQUIRED, 'The column name to convert the value for')
57
-             ->addArgument(InputArgumentKeysInterface::VALUES, InputArgument::REQUIRED|InputArgument::IS_ARRAY, 'The value to convert');
57
+             ->addArgument(InputArgumentKeysInterface::VALUES, InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'The value to convert');
58 58
 
59 59
         // invoke the parent method
60 60
         parent::configure();
Please login to merge, or discard this patch.
src/Command/ImportExecuteCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         // initialize the command with the required/optional options
49 49
         $this->setName(CommandNames::IMPORT_EXECUTE)
50 50
              ->setDescription('Executes the operations passed as argument')
51
-             ->addArgument(InputArgumentKeysInterface::OPERATION_NAMES, InputArgument::IS_ARRAY|InputArgument::OPTIONAL, 'The operation(s) that has to be executed');
51
+             ->addArgument(InputArgumentKeysInterface::OPERATION_NAMES, InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'The operation(s) that has to be executed');
52 52
 
53 53
         // invoke the parent method
54 54
         parent::configure();
Please login to merge, or discard this patch.
src/SimpleConfigurationLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -455,7 +455,7 @@
 block discarded – undo
455 455
         $editionSortOrder = array_flip($this->editionSortOrder);
456 456
 
457 457
         // sort the packages according the default sort order
458
-        uksort($packages, function ($a, $b) use ($editionSortOrder) {
458
+        uksort($packages, function($a, $b) use ($editionSortOrder) {
459 459
             return $editionSortOrder[$a] <=> $editionSortOrder[$b];
460 460
         });
461 461
 
Please login to merge, or discard this patch.