1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 17:44:04 +00:00

Fix #29 add Tenancy facade

This commit is contained in:
Samuel Štancl 2019-02-15 21:00:11 +01:00
parent 88d4e67516
commit 987c54f04e
4 changed files with 36 additions and 2 deletions

13
src/TenancyFacade.php Normal file
View file

@ -0,0 +1,13 @@
<?php
namespace Stancl\Tenancy;
use Illuminate\Support\Facades\Facade;
class TenancyFacade extends Facade
{
protected static function getFacadeAccessor()
{
return TenantManager::class;
}
}