From 9944d7a49fb8dd0a0df7c60eea567347a1b95c5c Mon Sep 17 00:00:00 2001 From: Ankit Padia Date: Tue, 19 Dec 2017 16:29:43 +0530 Subject: [PATCH] Fixed wrong description for param $table in addCommentOnTable() (#15387) [skip ci] --- framework/db/Migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/db/Migration.php b/framework/db/Migration.php index a882f87..a83b36a 100644 --- a/framework/db/Migration.php +++ b/framework/db/Migration.php @@ -502,7 +502,7 @@ class Migration extends Component implements MigrationInterface /** * Builds a SQL statement for adding comment to table. * - * @param string $table the table whose column is to be commented. The table name will be properly quoted by the method. + * @param string $table the table to be commented. The table name will be properly quoted by the method. * @param string $comment the text of the comment to be added. The comment will be properly quoted by the method. * @since 2.0.8 */