mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 05:44:04 +00:00
* Remove Facade suffix from facades, fix #386 * Apply fixes from StyleCI * Fix facade test
16 lines
274 B
PHP
16 lines
274 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use Stancl\Tenancy\TenantManager;
|
|
|
|
class Tenancy extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return TenantManager::class;
|
|
}
|
|
}
|