Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function boot(): void |
||
16 | { |
||
17 | if (!$this->app->runningInConsole()) { |
||
18 | return; |
||
19 | } |
||
20 | |||
21 | $this->commands([BulkWrite::class]); |
||
22 | if (function_exists('config_path')) { |
||
23 | $this->publishes([ |
||
24 | dirname(__DIR__) . '/config/config.php' => config_path('entry.php'), |
||
25 | ], 'laravel-entry-config'); |
||
26 | } |
||
39 |