| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | 4 | public function register(): void |
|
| 50 | { |
||
| 51 | 4 | $configPath = __DIR__ . '/../config/opendox.php'; |
|
| 52 | 4 | $this->mergeConfigFrom($configPath, 'opendox'); |
|
| 53 | |||
| 54 | $this->app->singleton('command.opendox.transform-docs', function () { |
||
| 55 | 1 | return new TransformDocsCommand(); |
|
| 56 | 4 | }); |
|
| 57 | |||
| 58 | 4 | $this->commands( |
|
| 59 | 4 | 'command.opendox.transform-docs' |
|
| 60 | ); |
||
| 63 |