summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-26 19:52:14 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-26 19:52:14 +0100
commitc1aeda07d4329b8695c36360112593bbbd233099 (patch)
tree5637b7c27a14fea98c69fc2f39250baa8db68405
parent3b439baac7656f3d03155269e063fb650c67cc9b (diff)
Fix controller typehint
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r--lib/Controller/PageController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 107f859e..afbccb45 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -33,7 +33,7 @@ class PageController extends Controller {
public function __construct(string $AppName,
IRequest $request,
- string $UserId) {
+ string $UserId = null) {
parent::__construct($AppName, $request);
$this->userId = $UserId;
}