| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 47 | public function register() |
||
| 48 | { |
||
| 49 | $this->publishes([__DIR__.'/../../../config/search.php' => app()->basePath().'/config'.('search.php'), ]); |
||
| 50 | |||
| 51 | $this->registerCommand(Rebuild::class); |
||
| 52 | $this->registerCommand(Destroy::class); |
||
| 53 | $this->registerCommand(Optimise::class); |
||
| 54 | |||
| 55 | $this->commands(['command.search.rebuild', 'command.search.optimise', 'command.search.destroy']); |
||
| 56 | } |
||
| 57 | |||
| 67 |