summaryrefslogtreecommitdiffstats
path: root/dependencyinjection
diff options
context:
space:
mode:
Diffstat (limited to 'dependencyinjection')
-rw-r--r--dependencyinjection/dicontainer.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/dependencyinjection/dicontainer.php b/dependencyinjection/dicontainer.php
index 4d5a6420c..3b13b251a 100644
--- a/dependencyinjection/dicontainer.php
+++ b/dependencyinjection/dicontainer.php
@@ -107,12 +107,12 @@ class DIContainer extends BaseContainer {
$this['FeedBl'] = $this->share(function($c){
return new FeedBl($c['FeedMapper'], $c['Fetcher'],
- $c['ItemMapper'], $c['API'],
- $c['autoPurgeCount']);
+ $c['ItemMapper'], $c['API']);
});
$this['ItemBl'] = $this->share(function($c){
- return new ItemBl($c['ItemMapper'], $c['StatusFlag']);
+ return new ItemBl($c['ItemMapper'], $c['StatusFlag'],
+ $c['autoPurgeCount']);
});