From f89900d3058bf33c91c7d17836f9b6bb8c23d083 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Fri, 26 Aug 2022 15:37:47 +0500 Subject: [PATCH] fix styling --- src/Commands/Run.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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); }