From 83f0f1bfe31e88bd2d1d082e77fb38c490a20c19 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Fri, 9 Mar 2018 08:52:55 -0600 Subject: [PATCH] Fix notification events callers --- app/Listeners/NotificationEvents.php | 4 ++-- app/Models/Traits/HashIdTrait.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Listeners/NotificationEvents.php b/app/Listeners/NotificationEvents.php index 74f72eff..342a42d0 100644 --- a/app/Listeners/NotificationEvents.php +++ b/app/Listeners/NotificationEvents.php @@ -18,12 +18,12 @@ class NotificationEvents { $events->listen( \App\Events\UserRegistered::class, - 'App\Listeners\NotificationEventListener@onUserRegister' + 'App\Listeners\NotificationEvents@onUserRegister' ); $events->listen( \App\Events\UserStateChanged::class, - 'App\Listeners\NotificationEventListener@onUserStateChange' + 'App\Listeners\NotificationEvents@onUserStateChange' ); } diff --git a/app/Models/Traits/HashIdTrait.php b/app/Models/Traits/HashIdTrait.php index 18b82a10..dafe7a81 100644 --- a/app/Models/Traits/HashIdTrait.php +++ b/app/Models/Traits/HashIdTrait.php @@ -1,5 +1,4 @@