| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function boot() |
||
| 14 | { |
||
| 15 | if ($this->app->runningInConsole()) { |
||
| 16 | $this->publishes([ |
||
| 17 | __DIR__.'/../config/config.php' => config_path('digitonic.api-test-suite'), |
||
| 18 | ], 'config'); |
||
| 19 | |||
| 20 | $this->publishes([ |
||
| 21 | __DIR__ . '/../templates/' => base_path('tests/templates/') |
||
| 22 | ]); |
||
| 23 | |||
| 24 | // Registering package commands. |
||
| 25 | $this->commands([ |
||
| 26 | Installer::class, |
||
| 27 | ]); |
||
| 39 |