From 2ad147b74303370ed5b7ad1149de649cb767fea4 Mon Sep 17 00:00:00 2001 From: Jisse Reitsma Date: Wed, 2 Oct 2024 20:04:13 +0200 Subject: [PATCH] Remove PHPStan ignore --- Observer/Backend/Controller/ActionPredispatch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Observer/Backend/Controller/ActionPredispatch.php b/Observer/Backend/Controller/ActionPredispatch.php index cb1e232..195d890 100644 --- a/Observer/Backend/Controller/ActionPredispatch.php +++ b/Observer/Backend/Controller/ActionPredispatch.php @@ -59,7 +59,7 @@ public function execute( return $this; } - $controllerName = $this->request->getControllerName(); // @phpstan-ignore-line + $controllerName = $this->request->getControllerName(); if ($controllerName !== 'rate') { return $this; }