aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/Dispatcher.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-05-15 08:57:58 +0200
committerGravatar GitHub <noreply@github.com> 2024-05-15 08:57:58 +0200
commit2d17c020b6695d47debda065804db4e2d2f92e55 (patch)
tree4e03d16b1f59eabe347b8a89a7f375646269e13a /lib/Minz/Dispatcher.php
parentf958eaef2f733553132c4880f9e2e56003476545 (diff)
PHPStan 1.11 + minor update dev dependencies (#6459)
* PHPStan 1.11 + minor update dev dependencies https://github.com/phpstan/phpstan/releases/tag/1.11.0 * Comment style
Diffstat (limited to 'lib/Minz/Dispatcher.php')
-rw-r--r--lib/Minz/Dispatcher.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Minz/Dispatcher.php b/lib/Minz/Dispatcher.php
index c8825df61..85f342dad 100644
--- a/lib/Minz/Dispatcher.php
+++ b/lib/Minz/Dispatcher.php
@@ -44,7 +44,7 @@ final class Minz_Dispatcher {
$this->createController (Minz_Request::controllerName ());
$this->controller->init ();
$this->controller->firstAction ();
- // @phpstan-ignore-next-line
+ // @phpstan-ignore booleanNot.alwaysTrue
if (!self::$needsReset) {
$this->launchAction (
Minz_Request::actionName ()
@@ -53,7 +53,7 @@ final class Minz_Dispatcher {
}
$this->controller->lastAction ();
- // @phpstan-ignore-next-line
+ // @phpstan-ignore booleanNot.alwaysTrue
if (!self::$needsReset) {
$this->controller->declareCspHeader();
$this->controller->view ()->build ();
@@ -61,7 +61,7 @@ final class Minz_Dispatcher {
} catch (Minz_Exception $e) {
throw $e;
}
- // @phpstan-ignore-next-line
+ // @phpstan-ignore doWhile.alwaysFalse
} while (self::$needsReset);
}