D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Concerns
/
Filename :
TenantAwareCommand.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Concerns; use Stancl\Tenancy\Contracts\Tenant; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; trait TenantAwareCommand { /** @return int */ protected function execute(InputInterface $input, OutputInterface $output) { $tenants = $this->getTenants(); $exitCode = 0; foreach ($tenants as $tenant) { $result = (int) $tenant->run(function () { return $this->laravel->call([$this, 'handle']); }); if ($result !== 0) { $exitCode = $result; } } return $exitCode; } /** * Get an array of tenants for which the command should be executed. * * @return Tenant[]|mixed */ abstract protected function getTenants(); }