| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function register() |
||
| 26 | { |
||
| 27 | $this->app->make('Webelightdev\LaravelDbBackup\Controllers\DbBackupController'); |
||
| 28 | $this->loadViewsFrom(__DIR__.'/views', 'dbbackup'); |
||
| 29 | $this->publishes([__DIR__.'/../config/dbbackup.php' => config_path('dbbackup.php')]); |
||
| 30 | |||
| 31 | $this->app->bind('command.dbbackup:run', DbBackupCommand::class); |
||
| 32 | |||
| 33 | $this->commands([ |
||
| 34 | 'command.dbbackup:run', |
||
| 35 | ]); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |