Skip to content

Commit 8e0867d

Browse files
authored
Merge pull request #3 from stefanbauer/fix-target-is-not-instantiable
Fix Target is not instantiable while building
2 parents 62c566e + 8b15576 commit 8e0867d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/FaviconExtractorServiceProvider.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ public function boot()
1818
__DIR__.'/../config/favicon-extractor.php' => config_path('favicon-extractor.php')
1919
], 'config');
2020

21-
$this->mergeConfigFrom(__DIR__.'/../config/favicon-extractor.php', 'favicon-extractor');
22-
}
23-
24-
public function register()
25-
{
2621
$this->app->bind(
2722
FaviconFactoryInterface::class,
2823
FaviconFactory::class
@@ -45,4 +40,9 @@ public function register()
4540

4641
$this->app->alias(FaviconExtractorInterface::class, 'favicon.extractor');
4742
}
43+
44+
public function register()
45+
{
46+
$this->mergeConfigFrom(__DIR__.'/../config/favicon-extractor.php', 'favicon-extractor');
47+
}
4848
}

0 commit comments

Comments
 (0)