Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function handle(NewReply $event) |
||
14 | { |
||
15 | $subject = $event->getReply()->user->name." replied \"".limitText($event->getReply()->body, 40)."\""; |
||
16 | |||
17 | Notification::send($event->getReply()->thread->subscribersExcept, new NewReplyNotification($event->getReply(), $subject)); |
||
18 | } |
||
19 | } |
||
20 |