| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 4 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php |
||
| 29 | public function register() |
||
| 30 | { |
||
| 31 | // Push Notification Service |
||
| 32 | $this->app->bind('push-notification', function () { |
||
| 33 | return new PushNotificationClass(); |
||
| 34 | }); |
||
| 35 | // Log Notification Service |
||
| 36 | $this->app->bind('log-notification', function () { |
||
| 37 | return new LogNotificationClass(); |
||
| 38 | }); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |