| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 7 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | class ConfigurationServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | public function register(): void |
||
| 12 | { |
||
| 13 | $this->mergeConfigFrom(__DIR__.'/../../../config/hyde.php', 'hyde'); |
||
| 14 | $this->mergeConfigFrom(__DIR__.'/../../../config/docs.php', 'docs'); |
||
| 15 | $this->mergeConfigFrom(__DIR__.'/../../../config/site.php', 'site'); |
||
| 16 | $this->mergeConfigFrom(__DIR__.'/../../../config/markdown.php', 'markdown'); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function boot(): void |
||
| 24 | } |
||
| 25 | } |
||
| 26 |