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

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-12-07 13:28:10 +00:00
parent 2ed918406d
commit 410841dfe8

View file

@ -4,13 +4,13 @@ declare(strict_types=1);
namespace Stancl\Tenancy\Bootstrappers;
use Illuminate\Broadcasting\Broadcasters\Broadcaster;
use Illuminate\Broadcasting\BroadcastManager;
use Illuminate\Config\Repository;
use Illuminate\Foundation\Application;
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
use Stancl\Tenancy\Contracts\Tenant;
use Stancl\Tenancy\TenancyBroadcastManager;
use Illuminate\Broadcasting\Broadcasters\Broadcaster;
class BroadcastTenancyBootstrapper implements TenancyBootstrapper
{
@ -65,7 +65,7 @@ class BroadcastTenancyBootstrapper implements TenancyBootstrapper
public function revert(): void
{
$this->app->singleton(BroadcastManager::class, fn(Application $app) => $this->originalBroadcastManager);
$this->app->singleton(BroadcastManager::class, fn (Application $app) => $this->originalBroadcastManager);
$this->unsetConfig();
}