From edc29dc46640f0c9e2c60cda1f421cf1dbb5cb84 Mon Sep 17 00:00:00 2001 From: Markus Staab <47448731+clxmstaab@users.noreply.github.com> Date: Wed, 24 Jun 2026 08:57:31 +0200 Subject: [PATCH 1/2] Fix build on PHPStan 2.2.3 --- composer.json | 2 +- .../Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ad07036..3ef757e 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ ], "require": { "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^2.0" + "phpstan/phpstan": "^2.2.3" }, "conflict": { "dibi/dibi": "<3.0" diff --git a/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php b/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php index 1fa5466..084809b 100644 --- a/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php +++ b/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php @@ -19,6 +19,8 @@ protected function setUp(): void { $this->reflectionProvider = $this->createReflectionProvider(); $this->extension = new DibiFluentClassReflectionExtension(); + + parent::setUp(); } /** From ae98f957e8026cc789e4189098f43567aa27bc4b Mon Sep 17 00:00:00 2001 From: Markus Staab <47448731+clxmstaab@users.noreply.github.com> Date: Wed, 24 Jun 2026 08:58:02 +0200 Subject: [PATCH 2/2] cs --- .../Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php b/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php index 084809b..506cd80 100644 --- a/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php +++ b/tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php @@ -20,7 +20,7 @@ protected function setUp(): void $this->reflectionProvider = $this->createReflectionProvider(); $this->extension = new DibiFluentClassReflectionExtension(); - parent::setUp(); + parent::setUp(); } /**