diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-20 23:37:21 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-20 23:37:21 +0100 |
commit | 95562144da88784588fb2477fa0070576bd386a0 (patch) | |
tree | 2a4cfbdac203006fd9fd534b5d76a30dd52729a6 /system/database/drivers/interbase/interbase_result.php | |
parent | 51ed4ed7f6097a34ce1db7b225272bfc1b0f0bcf (diff) |
Set protected visibility on applicable functions/properties
Diffstat (limited to 'system/database/drivers/interbase/interbase_result.php')
-rw-r--r-- | system/database/drivers/interbase/interbase_result.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php index e1332ba93..7a3a41f2c 100644 --- a/system/database/drivers/interbase/interbase_result.php +++ b/system/database/drivers/interbase/interbase_result.php @@ -144,7 +144,7 @@ class CI_DB_interbase_result extends CI_DB_result { * * @return array */ - public function _data_seek($n = 0) + protected function _data_seek($n = 0) { //Set the row count to 0 $this->num_rows = 0; @@ -162,7 +162,7 @@ class CI_DB_interbase_result extends CI_DB_result { * * @return array */ - public function _fetch_assoc() + protected function _fetch_assoc() { //Increment row count $this->num_rows++; @@ -179,7 +179,7 @@ class CI_DB_interbase_result extends CI_DB_result { * * @return object */ - public function _fetch_object() + protected function _fetch_object() { //Increment row count $this->num_rows++; |