Browse Source

removed incorrect docblocks

tags/2.0.10
__FresHmaN 8 years ago committed by Paul Klimov
parent
commit
af189518a3
  1. 4
      framework/db/Migration.php

4
framework/db/Migration.php

@ -464,7 +464,6 @@ class Migration extends Component implements MigrationInterface
* @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 whose column is to be commented. The table name will be properly quoted by the method.
* @param string $column the name of the column to be commented. The column name will be properly quoted by the method. * @param string $column the name of the column to be commented. The column 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. * @param string $comment the text of the comment to be added. The comment will be properly quoted by the method.
* @return $this the command object itself
* @since 2.0.8 * @since 2.0.8
*/ */
public function addCommentOnColumn($table, $column, $comment) public function addCommentOnColumn($table, $column, $comment)
@ -480,7 +479,6 @@ class Migration extends Component implements MigrationInterface
* *
* @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 whose column is 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. * @param string $comment the text of the comment to be added. The comment will be properly quoted by the method.
* @return $this the command object itself
* @since 2.0.8 * @since 2.0.8
*/ */
public function addCommentOnTable($table, $comment) public function addCommentOnTable($table, $comment)
@ -496,7 +494,6 @@ class Migration extends Component implements MigrationInterface
* *
* @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 whose column is to be commented. The table name will be properly quoted by the method.
* @param string $column the name of the column to be commented. The column name will be properly quoted by the method. * @param string $column the name of the column to be commented. The column name will be properly quoted by the method.
* @return $this the command object itself
* @since 2.0.8 * @since 2.0.8
*/ */
public function dropCommentFromColumn($table, $column) public function dropCommentFromColumn($table, $column)
@ -511,7 +508,6 @@ class Migration extends Component implements MigrationInterface
* Builds a SQL statement for dropping comment from table * Builds a SQL statement for dropping comment from 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 whose column is to be commented. The table name will be properly quoted by the method.
* @return $this the command object itself
* @since 2.0.8 * @since 2.0.8
*/ */
public function dropCommentFromTable($table) public function dropCommentFromTable($table)

Loading…
Cancel
Save