Created
December 19, 2018 09:48
-
-
Save devmsh/99d2cf4f1fd84676dbe7bfb40a689b3f to your computer and use it in GitHub Desktop.
EventServiceProvider.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class EventServiceProvider extends ServiceProvider | |
| { | |
| protected $listen = [ | |
| 'App\Events\MobileVerifying' => [ | |
| 'App\Listeners\DeleteNotVerifiedUsers', | |
| 'App\Listeners\DeleteOutdatedActivationCodes', | |
| ], | |
| 'App\Events\MobileVerified' => [ | |
| 'App\Listeners\DeleteInvalidInvitations', | |
| 'App\Listeners\SendOldInvitations', | |
| ], | |
| ]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment