Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function boot(): void |
||
15 | { |
||
16 | if ($this->app->runningInConsole()) { |
||
17 | $this->publishes([ |
||
18 | __DIR__.'/../config/storyblok-forms.php' => config_path('storyblok-forms.php'), |
||
19 | __DIR__.'/../stubs/views' => resource_path('views/storyblok') |
||
20 | ], 'storyblok-forms'); |
||
21 | } |
||
22 | |||
23 | $this->commands([ |
||
24 | InstallCommand::class, |
||
25 | ]); |
||
36 |