summaryrefslogtreecommitdiffstats
path: root/controller/exportcontroller.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/exportcontroller.php')
-rw-r--r--controller/exportcontroller.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/controller/exportcontroller.php b/controller/exportcontroller.php
index b1d62f015..bc9fc0ff1 100644
--- a/controller/exportcontroller.php
+++ b/controller/exportcontroller.php
@@ -32,19 +32,19 @@ class ExportController extends Controller {
private $itemService;
private $userId;
- public function __construct($appName,
+ public function __construct($AppName,
IRequest $request,
FolderService $folderService,
FeedService $feedService,
ItemService $itemService,
OPMLExporter $opmlExporter,
- $userId){
- parent::__construct($appName, $request);
+ $UserId){
+ parent::__construct($AppName, $request);
$this->feedService = $feedService;
$this->folderService = $folderService;
$this->opmlExporter = $opmlExporter;
$this->itemService = $itemService;
- $this->userId = $userId;
+ $this->userId = $UserId;
}