summaryrefslogtreecommitdiffstats
path: root/controller/itemapicontroller.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/itemapicontroller.php
parentf741d1fd502687aafede499ab55c0803ad469df3 (diff)
first stab at intelligent container
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');
}