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

renamed class

This commit is contained in:
Abrar Ahmad 2022-07-04 23:55:24 +05:00
parent 65e51a4e8b
commit 57b842fbc6
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ class TenancyServiceProvider extends ServiceProvider
Events\TenantUpdated::class => [], Events\TenantUpdated::class => [],
Events\DeletingTenant::class => [ Events\DeletingTenant::class => [
JobPipeline::make([ JobPipeline::make([
Jobs\DeleteDomain::class, Jobs\DeleteDomains::class,
])->send(function (Events\TenantDeleted $event) { ])->send(function (Events\TenantDeleted $event) {
return $event->tenant; return $event->tenant;
})->shouldBeQueued(false), })->shouldBeQueued(false),

View file

@ -16,7 +16,7 @@ use Stancl\Tenancy\Events\DeletingDatabase;
use Stancl\Tenancy\Events\DeletingDomain; use Stancl\Tenancy\Events\DeletingDomain;
use Stancl\Tenancy\Events\DomainDeleted; use Stancl\Tenancy\Events\DomainDeleted;
class DeleteDomain implements ShouldQueue class DeleteDomains implements ShouldQueue
{ {
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;