From 351edfe543160f2947945211420a403f8f14cb0b Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Sun, 26 Oct 2025 13:16:57 +0300 Subject: [PATCH] Adapt to refactor "WITH" in Yii DB --- tests/QueryTest.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/QueryTest.php b/tests/QueryTest.php index ed9ce3839..52b24d75c 100644 --- a/tests/QueryTest.php +++ b/tests/QueryTest.php @@ -14,8 +14,6 @@ /** * @group mysql - * - * @psalm-suppress PropertyNotSetInConstructor */ final class QueryTest extends CommonQueryTest { @@ -88,7 +86,7 @@ public function testLimitOffsetWithExpression(): void $db->close(); } - public function testWithQuery() + public function testWithQuery(): void { $db = $this->getConnection(); $serverVersion = $db->getServerInfo()->getVersion(); @@ -104,7 +102,7 @@ public function testWithQuery() parent::testWithQuery(); } - public function testWithQueryRecursive() + public function testWithQueryRecursive(): void { $db = $this->getConnection(); $serverVersion = $db->getServerInfo()->getVersion();