| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function sendAppNotification($user, $message, $type = "info", $link = null) |
||
| 26 | { |
||
| 27 | $this->execute(SendAppNotificationCommand::class, SendAppNotificationCommandHandler::class, [ |
||
| 28 | 'user' => $user, |
||
| 29 | 'type' => $type, |
||
| 30 | 'message' => $message, |
||
| 31 | 'link' => $link |
||
| 32 | ], [ |
||
| 33 | SetTheUserId::class |
||
| 34 | ]); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |