| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function register() |
||
| 20 | { |
||
| 21 | Notification::resolved(function (ChannelManager $service) { |
||
| 22 | $service->extend('smsUp', function () { |
||
| 23 | return new SmsUpChannel(); |
||
| 24 | }); |
||
| 25 | }); |
||
| 26 | $this->app->bind('smsUp', function() { |
||
| 27 | return new SmsUpManager(config('services.smsUp')); |
||
|
|
|||
| 28 | }); |
||
| 29 | |||
| 30 | $this->registerRoutes(); |
||
| 31 | } |
||
| 58 | } |