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

Update command that use tenants

This commit is contained in:
lukinovec 2022-07-22 15:10:23 +02:00
parent f92b682eb3
commit 60fb9b8e54
6 changed files with 22 additions and 22 deletions

View file

@ -5,11 +5,11 @@ declare(strict_types=1);
namespace Stancl\Tenancy\Commands;
use Illuminate\Console\Command;
use Stancl\Tenancy\Concerns\HasATenantsOption;
use Stancl\Tenancy\Concerns\HasTenantOptions;
class Run extends Command
{
use HasATenantsOption;
use HasTenantOptions;
/**
* The console command description.
*
@ -31,7 +31,7 @@ class Run extends Command
*/
public function handle()
{
tenancy()->runForMultiple($this->option('tenants'), function ($tenant) {
tenancy()->runForMultiple($this->getTenants(), function ($tenant) {
$this->line("Tenant: {$tenant->getTenantKey()}");
$callback = function ($prefix = '') {
@ -51,6 +51,6 @@ class Run extends Command
// Run command
$this->call($this->argument('commandname'), array_merge($arguments, $options));
}, $this->withPending());
});
}
}