We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edaa236 commit 8ed87d7Copy full SHA for 8ed87d7
src/DocumentsServiceProvider.php
@@ -27,10 +27,6 @@ public function boot()
27
28
$this->loadTranslationsFrom(realpath(__DIR__.'/../resources/lang'), 'webfactor');
29
30
- $this->mergeConfigFrom(
31
- __DIR__.'/../config/webfactor/documents.php', 'webfactor.documents'
32
- );
33
-
34
$this->publishFiles();
35
}
36
@@ -41,7 +37,9 @@ public function boot()
41
37
*/
42
38
public function register()
43
39
{
44
- //
40
+ $this->mergeConfigFrom(
+ __DIR__.'/../config/webfactor/documents.php', 'webfactor.documents'
+ );
45
46
47
public function publishFiles()
0 commit comments