| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function register() |
||
| 34 | { |
||
| 35 | $this->app->singleton('laravel-schedulelogger', function () { |
||
| 36 | return new \PendoNL\LaravelScheduleLogger\LaravelScheduleLogger(); |
||
| 37 | }); |
||
| 38 | |||
| 39 | $this->app->bind('command.schedulelogger:clean', \PendoNL\LaravelScheduleLogger\Commands\CleanCommand::class); |
||
| 40 | |||
| 41 | $this->commands([ |
||
| 42 | 'command.schedulelogger:clean', |
||
| 43 | ]); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |