Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
16 | 24 | public function boot() |
|
17 | { |
||
18 | 24 | if ($this->app->runningInConsole()) { |
|
19 | 24 | $this->publishes([ |
|
20 | 24 | __DIR__.'/../config/config.php' => config_path('auto-translate.php'), |
|
21 | 24 | ], 'config'); |
|
22 | |||
23 | // Registering package commands. |
||
24 | 24 | $this->commands([ |
|
25 | 24 | AllCommand::class, |
|
26 | MissingCommand::class, |
||
27 | ]); |
||
28 | } |
||
29 | 24 | } |
|
30 | |||
51 |