From 97d8902fb92bdee7376e987ca82366747c1ce04c Mon Sep 17 00:00:00 2001 From: Yves P Date: Tue, 16 Jun 2015 23:13:23 +0200 Subject: [PATCH] Correct doc blocks --- src/Database/Connection.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Database/Connection.php b/src/Database/Connection.php index 3926b26a45f..1e57fd4d6c7 100644 --- a/src/Database/Connection.php +++ b/src/Database/Connection.php @@ -325,7 +325,7 @@ public function schemaCollection(SchemaCollection $collection = null) /** * Executes an INSERT query on the specified table. * - * @param string $table the table to update values in + * @param string $table the table to insert values in * @param array $data values to be inserted * @param array $types list of associative array containing the types to be used for casting * @return \Cake\Database\StatementInterface @@ -342,7 +342,7 @@ public function insert($table, array $data, array $types = []) /** * Executes an UPDATE statement on the specified table. * - * @param string $table the table to delete rows from + * @param string $table the table to update rows from * @param array $data values to be updated * @param array $conditions conditions to be set for update statement * @param array $types list of associative array containing the types to be used for casting