mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-16 17:14:04 +00:00
[3.x] Rename facades (#387)
* Remove Facade suffix from facades, fix #386 * Apply fixes from StyleCI * Fix facade test
This commit is contained in:
parent
d900929264
commit
5972364075
5 changed files with 13 additions and 13 deletions
16
src/Facades/Tenancy.php
Normal file
16
src/Facades/Tenancy.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue