Skip to content

Commit

Permalink
Merge pull request #1466 from jim-parry/fix1
Browse files Browse the repository at this point in the history
Fix phpdocs for BaseBuilder
  • Loading branch information
jim-parry authored Nov 12, 2018
2 parents 57cdb2a + fd2f324 commit d5b479a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions system/Database/BaseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1749,7 +1749,7 @@ public function getCompiledInsert($reset = true)
* @param boolean $escape Whether to escape values and identifiers
* @param boolean $test Used when running tests
*
* @return boolean TRUE on success, FALSE on failure
* @return BaseResult|Query|false
*/
public function insert($set = null, $escape = null, $test = false)
{
Expand Down Expand Up @@ -1832,7 +1832,7 @@ protected function _insert($table, array $keys, array $unescapedKeys)
* @param array $set An associative array of insert values
* @param boolean $returnSQL
*
* @return boolean TRUE on success, FALSE on failure
* @return BaseResult|Query|string|false
* @throws DatabaseException
*/
public function replace($set = null, $returnSQL = false)
Expand Down Expand Up @@ -2045,7 +2045,7 @@ protected function validateUpdate()
* @param integer $batchSize The size of the batch to run
* @param boolean $returnSQL True means SQL is returned, false will execute the query
*
* @return mixed Number of rows affected or FALSE on failure
* @return mixed Number of rows affected, SQL string, or FALSE on failure
* @throws \CodeIgniter\Database\Exceptions\DatabaseException
*/
public function updateBatch($set = null, $index = null, $batchSize = 100, $returnSQL = false)
Expand Down

0 comments on commit d5b479a

Please sign in to comment.