summaryrefslogtreecommitdiffstats
path: root/controller/itemcontroller.php
diff options
context:
space:
mode:
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;
}