summaryrefslogtreecommitdiffstats
path: root/controller/itemapicontroller.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/itemapicontroller.php')
-rw-r--r--controller/itemapicontroller.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/controller/itemapicontroller.php b/controller/itemapicontroller.php
index 187a2b6b1..0fb613c92 100644
--- a/controller/itemapicontroller.php
+++ b/controller/itemapicontroller.php
@@ -28,13 +28,13 @@ class ItemApiController extends ApiController {
private $userId;
private $serializer;
- public function __construct($appName,
+ public function __construct($AppName,
IRequest $request,
ItemService $itemService,
- $userId){
- parent::__construct($appName, $request);
+ $UserId){
+ parent::__construct($AppName, $request);
$this->itemService = $itemService;
- $this->userId = $userId;
+ $this->userId = $UserId;
$this->serializer = new EntityApiSerializer('items');
}