Skip to content

Commit 86764a5

Browse files
authored
Merge pull request #944 from hydephp/update-configuration-service-provider
Merge configuration files in configuration service provider
2 parents 04f753b + 3a813db commit 86764a5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/framework/src/Foundation/Providers/ConfigurationServiceProvider.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ public function initialize(): void
2121

2222
public function register(): void
2323
{
24-
//
24+
$this->mergeConfigFrom(__DIR__.'/../../../config/hyde.php', 'hyde');
25+
$this->mergeConfigFrom(__DIR__.'/../../../config/docs.php', 'docs');
26+
$this->mergeConfigFrom(__DIR__.'/../../../config/site.php', 'site');
27+
$this->mergeConfigFrom(__DIR__.'/../../../config/markdown.php', 'markdown');
2528
}
2629

2730
public function boot(): void

0 commit comments

Comments
 (0)