Browse Source

Fix PhpDoc of `yii\db\pgsql\QueryBuilder::normalizeTableRowData()` (#19234)

master
Anton 3 years ago committed by GitHub
parent
commit
cb5e180695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/db/pgsql/QueryBuilder.php

2
framework/db/pgsql/QueryBuilder.php

@ -463,7 +463,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
* @param array|Query $columns the column data (name => value) to be saved into the table or instance * @param array|Query $columns the column data (name => value) to be saved into the table or instance
* of [[yii\db\Query|Query]] to perform INSERT INTO ... SELECT SQL statement. * of [[yii\db\Query|Query]] to perform INSERT INTO ... SELECT SQL statement.
* Passing of [[yii\db\Query|Query]] is available since version 2.0.11. * Passing of [[yii\db\Query|Query]] is available since version 2.0.11.
* @return array normalized columns * @return array|Query normalized columns
* @since 2.0.9 * @since 2.0.9
*/ */
private function normalizeTableRowData($table, $columns) private function normalizeTableRowData($table, $columns)

Loading…
Cancel
Save