summaryrefslogtreecommitdiffstats
path: root/controller/itemcontroller.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-12-17 19:20:21 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-01-18 14:06:07 +0100
commit73759298658da929fe2da06d0446a93a56859067 (patch)
tree99972490a099d31c70a0f856d681f71e194103a3 /controller/itemcontroller.php
parentf741d1fd502687aafede499ab55c0803ad469df3 (diff)
first stab at intelligent container
Diffstat (limited to 'controller/itemcontroller.php')
-rw-r--r--controller/itemcontroller.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/controller/itemcontroller.php b/controller/itemcontroller.php
index f2ff5990a..bf63bc0b8 100644
--- a/controller/itemcontroller.php
+++ b/controller/itemcontroller.php
@@ -33,16 +33,16 @@ class ItemController extends Controller {
private $userId;
private $settings;
- public function __construct($appName,
+ public function __construct($AppName,
IRequest $request,
FeedService $feedService,
ItemService $itemService,
IConfig $settings,
- $userId){
- parent::__construct($appName, $request);
+ $UserId){
+ parent::__construct($AppName, $request);
$this->itemService = $itemService;
$this->feedService = $feedService;
- $this->userId = $userId;
+ $this->userId = $UserId;
$this->settings = $settings;
}