fixed wiring after class rename

This commit is contained in:
Bernhard Posselt 2013-03-22 11:18:54 +01:00
Родитель 13eed83a10
Коммит c8352ac581
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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();
});