summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2017-12-20 20:53:55 +0100
committerGabriel Caruso <carusogabriel34@gmail.com>2017-12-20 20:53:55 +0100
commit7774e3846c525ff65c6d9b86aacb1cc3bc229e3e (patch)
tree6c8542fa21b7a3ebea93ab86ac2817b2dc63f799 /system/database
parent058a127a6a5e15f39def341e67a7cd6418882c34 (diff)
Add extra line before return
Diffstat (limited to 'system/database')
-rw-r--r--system/database/DB_result.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/database/DB_result.php b/system/database/DB_result.php
index 821a0ea07..40b8fbb74 100644
--- a/system/database/DB_result.php
+++ b/system/database/DB_result.php
@@ -334,6 +334,7 @@ class CI_DB_result {
if ($type === 'object') return $this->row_object($n);
elseif ($type === 'array') return $this->row_array($n);
+
return $this->custom_row_object($n, $type);
}