From f992d19932e85bf2d4cc9b6c183e7aacf5d50c2d Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Sat, 14 Oct 2023 17:54:29 -0700 Subject: [PATCH] refactor: remove dead code Signed-off-by: Varun Patil --- lib/Controller/PageController.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index 5a9509ae..3df9b9a5 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -14,18 +14,15 @@ use OCP\IRequest; class PageController extends Controller { - protected $userId; protected $appName; protected IEventDispatcher $eventDispatcher; public function __construct( string $AppName, IRequest $request, - $UserId, IEventDispatcher $eventDispatcher ) { parent::__construct($AppName, $request); - $this->userId = $UserId; $this->appName = $AppName; $this->eventDispatcher = $eventDispatcher; }