summaryrefslogtreecommitdiffstats
path: root/dependencyinjection
diff options
context:
space:
mode:
Diffstat (limited to 'dependencyinjection')
-rw-r--r--dependencyinjection/dicontainer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/dependencyinjection/dicontainer.php b/dependencyinjection/dicontainer.php
index 80a88f0c4..a4202e12c 100644
--- a/dependencyinjection/dicontainer.php
+++ b/dependencyinjection/dicontainer.php
@@ -116,7 +116,7 @@ class DIContainer extends BaseContainer {
$this['ItemBusinessLayer'] = $this->share(function($c){
return new ItemBusinessLayer($c['ItemMapper'], $c['StatusFlag'],
- $c['autoPurgeCount']);
+ $c['TimeFactory'], $c['autoPurgeCount']);
});