Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function boot(): void |
||
13 | { |
||
14 | if ($this->app->runningUnitTests()) { |
||
15 | $this->loadViewsFrom(__DIR__ . '/../resources/views', 'hubspot-engagement'); |
||
16 | } |
||
17 | |||
18 | $this->mergeConfigFrom(__DIR__ . '/../config/hubspot.php', 'hubspot'); |
||
19 | |||
20 | $this->publishes( |
||
21 | [ |
||
22 | __DIR__ . '/../config/hubspot.php' => config_path('hubspot.php'), |
||
23 | ] |
||
34 |