Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions app/Listeners/StoreTweetIdentifier.php

This file was deleted.

5 changes: 0 additions & 5 deletions app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
use App\Listeners\SendNewArticleNotification;
use App\Listeners\SendNewReplyNotification;
use App\Listeners\SendNewSpamNotification;
use App\Listeners\StoreTweetIdentifier;
use App\Listeners\SubscribeUsersMentionedInReply;
use App\Listeners\SubscribeUsersMentionedInThread;
use App\Models\User;
use App\Observers\UserObserver;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Notifications\Events\NotificationSent;

class EventServiceProvider extends ServiceProvider
{
Expand All @@ -43,9 +41,6 @@ class EventServiceProvider extends ServiceProvider
EmailAddressWasChanged::class => [
RenewEmailVerificationNotification::class,
],
NotificationSent::class => [
StoreTweetIdentifier::class,
],
Registered::class => [
SendEmailVerificationNotification::class,
],
Expand Down