| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | public function handle($logs) |
||
| 8 | { |
||
| 9 | if (! is_null(config('stethoscope.notifications.notifiable'))) { |
||
| 10 | $notifiable = app(config('stethoscope.notifications.notifiable')); |
||
| 11 | |||
| 12 | $notificationClass = $this->detemineNotificationClass(); |
||
| 13 | |||
| 14 | $notifiable->notify( |
||
| 15 | new $notificationClass($logs) |
||
| 16 | ); |
||
| 27 |