From 9055f46351bba23b31d966251486a2b2d47bbdd0 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg <mail@danielkesselberg.de> Date: Tue, 19 Nov 2019 16:16:26 +0100 Subject: [PATCH] Make phan happy ;) Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> --- .../AppFramework/Middleware/Security/SecurityMiddleware.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php b/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php index 52d1823f219..586d4057641 100644 --- a/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php +++ b/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php @@ -121,6 +121,8 @@ class SecurityMiddleware extends Middleware { * @param Controller $controller the controller * @param string $methodName the name of the method * @throws SecurityException when a security check fails + * + * @suppress PhanUndeclaredClassConstant */ public function beforeController($controller, $methodName) { @@ -128,7 +130,6 @@ class SecurityMiddleware extends Middleware { // for normal HTML requests and not for AJAX requests $this->navigationManager->setActiveEntry($this->appName); - /** @suppress PhanUndeclaredClassConstant */ if ($controller === \OCA\Talk\Controller\PageController::class && $methodName === 'showCall') { $this->navigationManager->setActiveEntry('spreed'); } -- GitLab