diff --git a/src/Commands/Run.php b/src/Commands/Run.php index 6a357b65..84b858d8 100644 --- a/src/Commands/Run.php +++ b/src/Commands/Run.php @@ -42,9 +42,7 @@ class Run extends Command } /** - * Get command as ArgvInput instance - * - * @return ArgvInput + * Get command as ArgvInput instance. */ protected function ArgvInput(): ArgvInput { @@ -52,7 +50,7 @@ class Run extends Command $subCommand = explode(' ', $this->argument('commandname')); // Add "artisan" as first parameter because ArgvInput expect "artisan" as first parameter and later remove it - array_unshift($subCommand , 'artisan'); + array_unshift($subCommand, 'artisan'); return new ArgvInput($subCommand); }