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

Fix some tests

This commit is contained in:
Samuel Štancl 2019-09-16 17:36:32 +02:00
parent 93d2a281eb
commit 50a77ee826
10 changed files with 76 additions and 61 deletions

View file

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