diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php index e7e51e32..1430832a 100644 --- a/app/Providers/EventServiceProvider.php +++ b/app/Providers/EventServiceProvider.php @@ -9,18 +9,15 @@ use App\Events\CommentWasAdded; use App\Events\ReplyWasCreated; use App\Events\SponsoringPaymentInitialize; -use App\Events\ThreadWasCreated; use App\Events\UserBannedEvent; use App\Events\UserUnbannedEvent; // use App\Listeners\SendCompanyEmailVerificationNotification; use App\Listeners\NotifyMentionedUsers; -use App\Listeners\PostNewThreadNotification; use App\Listeners\SendBanNotificationListener; use App\Listeners\SendNewArticleNotification; use App\Listeners\SendNewCommentNotification; // use App\Listeners\SendWelcomeCompanyNotification; use App\Listeners\SendNewReplyNotification; -use App\Listeners\SendNewThreadNotification; use App\Listeners\SendPaymentNotification; use App\Listeners\SendUnbanNotificationListener; use App\Listeners\SendWelcomeMailNotification; @@ -42,10 +39,6 @@ final class EventServiceProvider extends ServiceProvider SendNewReplyNotification::class, NotifyMentionedUsers::class, ], - ThreadWasCreated::class => [ - SendNewThreadNotification::class, - PostNewThreadNotification::class, - ], ArticleWasSubmittedForApproval::class => [ SendNewArticleNotification::class, ],