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

Rename bootstrapper

This commit is contained in:
lukinovec 2023-04-13 07:07:11 +02:00
parent 35b0dea270
commit 4ab692bb05
4 changed files with 9 additions and 7 deletions

View file

@ -9,9 +9,11 @@ use Stancl\Tenancy\Contracts\TenancyBootstrapper;
use Stancl\Tenancy\Contracts\Tenant;
/**
* todo name
*
* Separate tenant cache using tagging.
*/
class CacheTaggingBootstrapper implements TenancyBootstrapper
class CacheTagsBootstrapper implements TenancyBootstrapper
{
public function bootstrap(Tenant $tenant): void
{

View file

@ -28,7 +28,7 @@ use Stancl\Tenancy\Listeners\BootstrapTenancy;
use Stancl\Tenancy\Tests\Etc\TestingBroadcaster;
use Stancl\Tenancy\Listeners\DeleteTenantStorage;
use Stancl\Tenancy\Listeners\RevertToCentralContext;
use Stancl\Tenancy\Bootstrappers\CacheTaggingBootstrapper;
use Stancl\Tenancy\Bootstrappers\CacheTagsBootstrapper;
use Stancl\Tenancy\Bootstrappers\UrlTenancyBootstrapper;
use Stancl\Tenancy\Bootstrappers\MailTenancyBootstrapper;
use Stancl\Tenancy\Bootstrappers\RedisTenancyBootstrapper;
@ -85,7 +85,7 @@ test('database data is separated', function () {
test('cache data is separated', function () {
config([
'tenancy.bootstrappers' => [
CacheTaggingBootstrapper::class,
CacheTagsBootstrapper::class,
],
'cache.default' => 'redis',
]);

View file

@ -6,10 +6,10 @@ use Stancl\Tenancy\Tests\Etc\Tenant;
use Illuminate\Support\Facades\Event;
use Stancl\Tenancy\Events\TenancyInitialized;
use Stancl\Tenancy\Listeners\BootstrapTenancy;
use Stancl\Tenancy\Bootstrappers\CacheTaggingBootstrapper;
use Stancl\Tenancy\Bootstrappers\CacheTagsBootstrapper;
beforeEach(function () {
config(['tenancy.bootstrappers' => [CacheTaggingBootstrapper::class]]);
config(['tenancy.bootstrappers' => [CacheTagsBootstrapper::class]]);
Event::listen(TenancyInitialized::class, BootstrapTenancy::class);
});

View file

@ -9,10 +9,10 @@ use Stancl\Tenancy\Facades\GlobalCache;
use Stancl\Tenancy\Events\TenancyInitialized;
use Stancl\Tenancy\Listeners\BootstrapTenancy;
use Stancl\Tenancy\Listeners\RevertToCentralContext;
use Stancl\Tenancy\Bootstrappers\CacheTaggingBootstrapper;
use Stancl\Tenancy\Bootstrappers\CacheTagsBootstrapper;
beforeEach(function () {
config(['tenancy.bootstrappers' => [CacheTaggingBootstrapper::class]]);
config(['tenancy.bootstrappers' => [CacheTagsBootstrapper::class]]);
Event::listen(TenancyInitialized::class, BootstrapTenancy::class);
Event::listen(TenancyEnded::class, RevertToCentralContext::class);