diff --git a/src/lib/Mothership/Magerun/Base/Command/Workflow/AbstractWorkflow.php b/src/lib/Mothership/Magerun/Base/Command/Workflow/AbstractWorkflow.php index 6fed2d2..1464288 100644 --- a/src/lib/Mothership/Magerun/Base/Command/Workflow/AbstractWorkflow.php +++ b/src/lib/Mothership/Magerun/Base/Command/Workflow/AbstractWorkflow.php @@ -119,7 +119,7 @@ public function run($args = [], $logIntoMagentoScheduler = true) if (!in_array($key, ['output', 'yaml', 'quiet', 'ansi', 'no-ansi', 'skip-config', 'skip-root-check', 'help', 'interactive', 'version', 'no-interaction']) ) { - $argsTable[] = [$key, $arg]; + $argsTable[] = [$key, is_array($arg) ? 'Array' : $arg]; } } $table->setRows($argsTable);