From a83ccc9f3cc76ae3bdefa2c4a2796c28296a62df Mon Sep 17 00:00:00 2001 From: Tigrov Date: Thu, 23 Nov 2023 13:00:33 +0700 Subject: [PATCH] Rename variable in test `$type` => `$columnType` --- tests/Db/Command/CommandTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Db/Command/CommandTest.php b/tests/Db/Command/CommandTest.php index 21aa4205c..4c77527dc 100644 --- a/tests/Db/Command/CommandTest.php +++ b/tests/Db/Command/CommandTest.php @@ -48,12 +48,12 @@ public function testAddColumn(ColumnInterface|string $type): void $command = $db->createCommand(); $sql = $command->addColumn('table', 'column', $type)->getSql(); - $type = $db->getQueryBuilder()->getColumnType($type); + $columnType = $db->getQueryBuilder()->getColumnType($type); $this->assertSame( DbHelper::replaceQuotes( <<getDriverName(), ),