| 1 | <?php |
||
| 15 | class EventServiceProvider extends ServiceProvider |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The event handler mappings for the application. |
||
| 20 | * |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | protected $listen |
||
| 24 | = [ |
||
| 25 | Logout::class => [ |
||
| 26 | DeleteDBToken::class, |
||
| 27 | ], |
||
| 28 | ]; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Register any events for your application. |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | 15 | public function boot(): void |
|
| 39 | |||
| 40 | } |
||
| 41 |