From 27e9acc438c9fe6cc13716444ba24ad5edf3183c Mon Sep 17 00:00:00 2001 From: Tigrov Date: Tue, 6 Feb 2024 10:33:38 +0000 Subject: [PATCH] Apply Rector changes (CI) --- tests/CommandTest.php | 2 +- tests/QueryBuilderTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CommandTest.php b/tests/CommandTest.php index 32486c27..2fbc8944 100644 --- a/tests/CommandTest.php +++ b/tests/CommandTest.php @@ -466,7 +466,7 @@ public function testUpdate( array|string $conditions, array $params, array $expectedValues, - int $expectedCount, + int $expectedCount = null, ): void { parent::testUpdate($table, $columns, $conditions, $params, $expectedValues, $expectedCount); } diff --git a/tests/QueryBuilderTest.php b/tests/QueryBuilderTest.php index a14c9116..f50e2e45 100644 --- a/tests/QueryBuilderTest.php +++ b/tests/QueryBuilderTest.php @@ -705,7 +705,7 @@ public function testUpdate( array|string $condition, array $params, string $expectedSql, - array $expectedParams, + array $expectedParams = null, ): void { parent::testUpdate($table, $columns, $condition, $params, $expectedSql, $expectedParams); }