From 0cd23cca7cdf8c8607a7046767924196dd693f9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 May 2025 11:50:12 +0200 Subject: Bump phpstan/phpstan from 2.1.11 to 2.1.13 (#7534) * Bump phpstan/phpstan from 2.1.11 to 2.1.13 Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 2.1.11 to 2.1.13. - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/2.1.x/CHANGELOG.md) - [Commits](https://github.com/phpstan/phpstan/compare/2.1.11...2.1.13) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.1.13 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump phpstan/phpstan from 2.1.11 to 2.1.13 Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 2.1.11 to 2.1.13. - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/2.1.x/CHANGELOG.md) - [Commits](https://github.com/phpstan/phpstan/compare/2.1.11...2.1.13) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.1.13 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Fix PHPStan --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexandre Alapetite --- lib/Minz/Dispatcher.php | 3 --- 1 file changed, 3 deletions(-) (limited to 'lib/Minz') diff --git a/lib/Minz/Dispatcher.php b/lib/Minz/Dispatcher.php index fd1ce2fdf..61cdfa598 100644 --- a/lib/Minz/Dispatcher.php +++ b/lib/Minz/Dispatcher.php @@ -44,7 +44,6 @@ final class Minz_Dispatcher { $this->createController(Minz_Request::controllerName()); $this->controller->init(); $this->controller->firstAction(); - // @phpstan-ignore booleanNot.alwaysTrue if (!self::$needsReset) { $this->launchAction( Minz_Request::actionName() @@ -53,7 +52,6 @@ final class Minz_Dispatcher { } $this->controller->lastAction(); - // @phpstan-ignore booleanNot.alwaysTrue if (!self::$needsReset) { $this->controller->declareCspHeader(); $this->controller->view()->build(); @@ -61,7 +59,6 @@ final class Minz_Dispatcher { } catch (Minz_Exception $e) { throw $e; } - // @phpstan-ignore doWhile.alwaysFalse } while (self::$needsReset); } -- cgit v1.2.3