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

Remove Facade suffix from facades, fix #386

This commit is contained in:
Samuel Štancl 2020-05-03 17:33:16 +02:00
parent d900929264
commit d684931b3c
5 changed files with 10 additions and 11 deletions

View file

@ -122,9 +122,9 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
protected function getPackageAliases($app)
{
return [
'Tenant' => \Stancl\Tenancy\Facades\TenantFacade::class,
'Tenancy' => \Stancl\Tenancy\Facades\TenancyFacade::class,
'GlobalCache' => \Stancl\Tenancy\Facades\GlobalCacheFacade::class,
'Tenant' => \Stancl\Tenancy\Facades\Tenant::class,
'Tenancy' => \Stancl\Tenancy\Facades\Tenancy::class,
'GlobalCache' => \Stancl\Tenancy\Facades\GlobalCache::class,
];
}