Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DBAL-200 Missing docs for 1 parameter in Connection::update #236

Merged
merged 1 commit into from Dec 11, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Connection.php
Expand Up @@ -489,7 +489,7 @@ public function getTransactionIsolation()
* Executes an SQL UPDATE statement on a table. * Executes an SQL UPDATE statement on a table.
* *
* @param string $tableName The name of the table to update. * @param string $tableName The name of the table to update.
* @param array $data * @param array $data An associative array containing column-value pairs.
* @param array $identifier The update criteria. An associative array containing column-value pairs. * @param array $identifier The update criteria. An associative array containing column-value pairs.
* @param array $types Types of the merged $data and $identifier arrays in that order. * @param array $types Types of the merged $data and $identifier arrays in that order.
* @return integer The number of affected rows. * @return integer The number of affected rows.
Expand Down