Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
SendWelcomeNotification | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
handle | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace App\Listeners\Business; |
4 | |
5 | use App\Events\Business\Registered; |
6 | |
7 | class SendWelcomeNotification |
8 | { |
9 | public function handle(Registered $event): void |
10 | { |
11 | $event->user->sendWelcomeNotification(); |
12 | } |
13 | } |