Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function boot() |
||
16 | { |
||
17 | if ($this->app->runningInConsole()) { |
||
18 | $this->publishes([ |
||
19 | __DIR__.'/../config/config.php' => config_path('paratest.php'), |
||
20 | ], 'config'); |
||
21 | |||
22 | // Registering package commands. |
||
23 | $this->commands([ |
||
24 | DbCreateCLICommand::class, |
||
25 | DbReCreateCLICommand::class, |
||
26 | DbDropCLICommand::class, |
||
27 | ]); |
||
28 | } |
||
29 | } |
||
30 | |||
45 |