Passed
Push — 10.x ( c780a5...bfd0c3 )
by Tim
02:47
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.