Skip to content

Commit

Permalink
Correct doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
HavokInspiration committed Jun 16, 2015
1 parent cef1adb commit 97d8902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Database/Connection.php
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 97d8902

Please sign in to comment.