From 7a1f38c7f6fff9c5f19a07cbb317fcd2a26b0410 Mon Sep 17 00:00:00 2001 From: Padraig O'Sullivan Date: Tue, 11 Dec 2012 10:37:02 -0500 Subject: [PATCH] Trivial addition of 1-sentence description of missing param in docblock for Connection::update. --- lib/Doctrine/DBAL/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/DBAL/Connection.php b/lib/Doctrine/DBAL/Connection.php index af0a1bf5f42..aebde5ef45b 100644 --- a/lib/Doctrine/DBAL/Connection.php +++ b/lib/Doctrine/DBAL/Connection.php @@ -489,7 +489,7 @@ public function getTransactionIsolation() * Executes an SQL UPDATE statement on a table. * * @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 $types Types of the merged $data and $identifier arrays in that order. * @return integer The number of affected rows.