@@ -54,7 +54,7 @@ |
||
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(); |
@@ -48,7 +48,7 @@ |
||
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(); |
@@ -455,7 +455,7 @@ |
||
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 |