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

Merge branch 'improve-run-command' of https://github.com/abrardev99/tenancy into improve-run-command

This commit is contained in:
Abrar Ahmad 2022-08-29 11:41:34 +05:00
commit 851830420c

View file

@ -49,7 +49,7 @@ class Run extends Command
// Convert string command to array
$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 expects "artisan" as first parameter and later removes it
array_unshift($subCommand, 'artisan');
return new ArgvInput($subCommand);