1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 17:14:03 +00:00

fix styling

This commit is contained in:
Abrar Ahmad 2022-08-26 15:37:47 +05:00
parent 8418fac990
commit f89900d305

View file

@ -42,9 +42,7 @@ class Run extends Command
} }
/** /**
* Get command as ArgvInput instance * Get command as ArgvInput instance.
*
* @return ArgvInput
*/ */
protected function ArgvInput(): ArgvInput protected function ArgvInput(): ArgvInput
{ {
@ -52,7 +50,7 @@ class Run extends Command
$subCommand = explode(' ', $this->argument('commandname')); $subCommand = explode(' ', $this->argument('commandname'));
// Add "artisan" as first parameter because ArgvInput expect "artisan" as first parameter and later remove it // 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); return new ArgvInput($subCommand);
} }