Passed
Push — 9.x ( b88955...b42dc0 )
by Tim
04:38
created
src/Command/ImportExecuteCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         // initialize the command with the required/optional options
48 48
         $this->setName(CommandNames::IMPORT_EXECUTE)
49 49
              ->setDescription('Executes the operations passed as argument')
50
-             ->addArgument(InputArgumentKeys::OPERATION_NAMES, InputArgument::IS_ARRAY|InputArgument::OPTIONAL, 'The operation(s) that has to be executed');
50
+             ->addArgument(InputArgumentKeys::OPERATION_NAMES, InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'The operation(s) that has to be executed');
51 51
 
52 52
         // invoke the parent method
53 53
         parent::configure();
Please login to merge, or discard this patch.
src/Command/ImportConvertValueCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
              ->setDescription('Converts the value to the format expected by the given column')
54 54
              ->addArgument(InputArgumentKeys::ENTITY_TYPE_CODE, InputArgument::REQUIRED, 'The entity type code to use, e. g. catalog_product')
55 55
              ->addArgument(InputArgumentKeys::COLUMN, InputArgument::REQUIRED, 'The column name to convert the value for')
56
-             ->addArgument(InputArgumentKeys::VALUES, InputArgument::REQUIRED|InputArgument::IS_ARRAY, 'The value to convert');
56
+             ->addArgument(InputArgumentKeys::VALUES, InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'The value to convert');
57 57
 
58 58
         // invoke the parent method
59 59
         parent::configure();
Please login to merge, or discard this patch.
src/Command/ImportCreateOkFileCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
         $prefixes = $configuration->getPrefixes();
104 104
 
105 105
         // sort the prefixes
106
-        usort($prefixes, function ($a, $b) {
106
+        usort($prefixes, function($a, $b) {
107 107
             return strcmp($a, $b);
108 108
         });
109 109
 
Please login to merge, or discard this patch.