From e353835cc57afacb18475edd33e53eddf9509e8d Mon Sep 17 00:00:00 2001 From: Bilal <33921776+glowinginthedark@users.noreply.github.com> Date: Wed, 5 Jan 2022 04:12:10 -0800 Subject: [PATCH] Fixed typo (#19134) --- framework/db/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/db/Command.php b/framework/db/Command.php index 53be147..fdfc25f 100644 --- a/framework/db/Command.php +++ b/framework/db/Command.php @@ -693,7 +693,7 @@ class Command extends Component * @param string $table the table that the new column will be added to. The table name will be properly quoted by the method. * @param string $column the name of the new column. The name will be properly quoted by the method. * @param string $type the column type. [[\yii\db\QueryBuilder::getColumnType()]] will be called - * to convert the give column type to the physical one. For example, `string` will be converted + * to convert the given column type to the physical one. For example, `string` will be converted * as `varchar(255)`, and `string not null` becomes `varchar(255) not null`. * @return $this the command object itself */