summaryrefslogtreecommitdiffstats
path: root/dependencyinjection
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-20 23:44:22 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-20 23:44:22 +0200
commit252168acebe67ee534d64b3f2bad72e6e08f1732 (patch)
treeff5efd1f5be0ff5f97d173f0436525ecfb260ef2 /dependencyinjection
parent18b523b8082cdfb5ce903d1183c35d618d7f5f29 (diff)
update items when they are being set read or starred
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']);
});