| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function boot(): void |
||
| 21 | { |
||
| 22 | $this->publishes([ |
||
| 23 | __DIR__.'/../../../config' => config_path(), |
||
| 24 | ], 'configs'); |
||
| 25 | |||
| 26 | $this->publishes([ |
||
| 27 | __DIR__.'/../../../config/hyde.php' => config_path('hyde.php'), |
||
| 28 | __DIR__.'/../../../config/docs.php' => config_path('docs.php'), |
||
| 29 | __DIR__.'/../../../config/markdown.php' => config_path('markdown.php'), |
||
| 30 | ], 'hyde-configs'); |
||
| 31 | |||
| 32 | $this->publishes([ |
||
| 33 | __DIR__.'/../../../config/view.php' => config_path('view.php'), |
||
| 34 | __DIR__.'/../../../config/cache.php' => config_path('cache.php'), |
||
| 35 | __DIR__.'/../../../config/commands.php' => config_path('commands.php'), |
||
| 36 | __DIR__.'/../../../config/torchlight.php' => config_path('torchlight.php'), |
||
| 37 | ], 'support-configs'); |
||
| 38 | } |
||
| 40 |