1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +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:
Samuel Štancl 2020-05-03 17:59:35 +02:00 committed by GitHub
parent d900929264
commit 5972364075
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 13 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,
];
}