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

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-08-09 16:37:43 +00:00 committed by StyleCI Bot
parent 5e34c2c6a4
commit 1384437deb

View file

@ -3,7 +3,6 @@
namespace Stancl\Tenancy\Commands; namespace Stancl\Tenancy\Commands;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;
class Run extends Command class Run extends Command
{ {
@ -43,7 +42,7 @@ class Run extends Command
return function ($arguments, $argument) use ($prefix) { return function ($arguments, $argument) use ($prefix) {
[$key, $value] = explode('=', $argument); [$key, $value] = explode('=', $argument);
$arguments[$prefix . $key] = $value; $arguments[$prefix . $key] = $value;
return $arguments; return $arguments;
}; };
}; };