summaryrefslogtreecommitdiffstats
path: root/dependencyinjection/dicontainer.php
diff options
context:
space:
mode:
Diffstat (limited to 'dependencyinjection/dicontainer.php')
-rw-r--r--dependencyinjection/dicontainer.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/dependencyinjection/dicontainer.php b/dependencyinjection/dicontainer.php
index fd6f36dac..f65108bdb 100644
--- a/dependencyinjection/dicontainer.php
+++ b/dependencyinjection/dicontainer.php
@@ -93,7 +93,7 @@ class DIContainer extends BaseContainer {
});
$this['FeedBl'] = $this->share(function($c){
- return new FeedBl($c['FeedMapper'], $c['Utils']);
+ return new FeedBl($c['FeedMapper'], $c['FeedFetcher']);
});
$this['ItemBl'] = $this->share(function($c){
@@ -120,8 +120,8 @@ class DIContainer extends BaseContainer {
/**
* Utility
*/
- $this['Utils'] = $this->share(function($c){
- return new Utils();
+ $this['FeedFetcher'] = $this->share(function($c){
+ return new FeedFetcher();
});