Skip to content

Commit

Permalink
Merge pull request #3 from stefanbauer/fix-target-is-not-instantiable
Browse files Browse the repository at this point in the history
Fix Target is not instantiable while building
  • Loading branch information
LKaemmerling authored Aug 21, 2019
2 parents 62c566e + 8b15576 commit 8e0867d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/FaviconExtractorServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ public function boot()
__DIR__.'/../config/favicon-extractor.php' => config_path('favicon-extractor.php')
], 'config');

$this->mergeConfigFrom(__DIR__.'/../config/favicon-extractor.php', 'favicon-extractor');
}

public function register()
{
$this->app->bind(
FaviconFactoryInterface::class,
FaviconFactory::class
Expand All @@ -45,4 +40,9 @@ public function register()

$this->app->alias(FaviconExtractorInterface::class, 'favicon.extractor');
}

public function register()
{
$this->mergeConfigFrom(__DIR__.'/../config/favicon-extractor.php', 'favicon-extractor');
}
}

0 comments on commit 8e0867d

Please sign in to comment.