minor changes made to make compatible with code structure

This commit is contained in:
Sevan Nerse 2020-04-15 21:16:17 +03:00
parent d3e7b863da
commit 31ce410341
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
namespace App\Listeners\Purchase; namespace App\Listeners\Purchase;
use App\Events\Purchase\BillReminding as Event; use App\Events\Purchase\BillReminded as Event;
use App\Notifications\Purchase\Bill as Notification; use App\Notifications\Purchase\Bill as Notification;
class SendBillReminderNotification class SendBillReminderNotification

View File

@ -2,7 +2,7 @@
namespace App\Listeners\Sale; namespace App\Listeners\Sale;
use App\Events\Sale\InvoiceReminding as Event; use App\Events\Sale\InvoiceReminded as Event;
use App\Notifications\Sale\Invoice as Notification; use App\Notifications\Sale\Invoice as Notification;
class SendInvoiceReminderNotification class SendInvoiceReminderNotification

View File

@ -39,7 +39,7 @@ class Event extends Provider
'App\Events\Purchase\BillRecurring' => [ 'App\Events\Purchase\BillRecurring' => [
'App\Listeners\Purchase\SendBillRecurringNotification', 'App\Listeners\Purchase\SendBillRecurringNotification',
], ],
'App\Events\Purchase\BillReminding' => [ 'App\Events\Purchase\BillReminded' => [
'App\Listeners\Purchase\SendBillReminderNotification', 'App\Listeners\Purchase\SendBillReminderNotification',
], ],
'App\Events\Sale\PaymentReceived' => [ 'App\Events\Sale\PaymentReceived' => [
@ -62,7 +62,7 @@ class Event extends Provider
'App\Events\Sale\InvoiceRecurring' => [ 'App\Events\Sale\InvoiceRecurring' => [
'App\Listeners\Sale\SendInvoiceRecurringNotification', 'App\Listeners\Sale\SendInvoiceRecurringNotification',
], ],
'App\Events\Sale\InvoiceReminding' => [ 'App\Events\Sale\InvoiceReminded' => [
'App\Listeners\Sale\SendInvoiceReminderNotification', 'App\Listeners\Sale\SendInvoiceReminderNotification',
], ],
'App\Events\Menu\AdminCreated' => [ 'App\Events\Menu\AdminCreated' => [