summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-02-10 17:12:48 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-02-13 10:35:57 +0100
commitfa0315a043250b62fb41fc661aa26c0f9de5eb80 (patch)
tree228f2848902dc2f94137f178d2c8eabfc0247af0 /lib
parenta6722de14c493499aa83b64a50fdf3b8ff2ae924 (diff)
Fix tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/PageController.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 95951337..9fc2b28e 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -31,7 +31,6 @@ use OCP\IRequest;
class PageController extends Controller {
protected $appName;
- private $userId;
/**
* @var IConfig
@@ -40,11 +39,10 @@ class PageController extends Controller {
public function __construct(string $AppName,
IRequest $request,
- string $UserId = null,
IConfig $config) {
parent::__construct($AppName, $request);
+
$this->appName = $AppName;
- $this->userId = $UserId;
$this->config = $config;
}