Skip to content

Commit

Permalink
fix on command line table representation
Browse files Browse the repository at this point in the history
  • Loading branch information
MaurizioBrioschi committed Mar 23, 2017
1 parent 20c1e19 commit 95443cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 95443cb

Please sign in to comment.