| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function register() |
||
| 31 | { |
||
| 32 | $this->mergeConfigFrom(__DIR__.'/../config/laravel-backup.php', 'laravel-backup'); |
||
| 33 | |||
| 34 | $this->app['events']->subscribe(EventHandler::class); |
||
| 35 | |||
| 36 | $this->app->bind('command.check:run', CheckUptimeMonitors::class); |
||
| 37 | $this->app->bind('command.create:clean', CreateUptimeMonitor::class); |
||
| 38 | $this->app->bind('command.delete:list', DeleteUptimeMonitor::class); |
||
| 39 | |||
| 40 | $this->commands([ |
||
| 41 | 'command.uptime-monitor:run', |
||
| 42 | 'command.uptime-monitor:create', |
||
| 43 | 'command.uptime-monitor:delete', |
||
| 44 | ]); |
||
| 45 | |||
| 46 | $this->app->singleton(ConsoleOutput::class); |
||
| 47 | } |
||
| 48 | } |
||
| 49 |