From 767e66814b929983cf219ba3576196b603e17e60 Mon Sep 17 00:00:00 2001 From: Omar Ramos Date: Thu, 27 Oct 2016 01:03:07 -0700 Subject: [PATCH] Fixing additional Codesniffer errors (convert tabs to spaces). --- libraries/joomla/database/iterator/oracle.php | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/libraries/joomla/database/iterator/oracle.php b/libraries/joomla/database/iterator/oracle.php index a0f05203e3bfb..26aa8a1f02372 100644 --- a/libraries/joomla/database/iterator/oracle.php +++ b/libraries/joomla/database/iterator/oracle.php @@ -97,7 +97,7 @@ protected function freeResult() */ public function toLower() { - $this->tolower = true; + $this->tolower = true; } /** @@ -109,7 +109,7 @@ public function toLower() */ public function toUpper() { - $this->tolower = false; + $this->tolower = false; } /** @@ -121,7 +121,7 @@ public function toUpper() */ public function returnLobValues() { - $this->returnlobs = true; + $this->returnlobs = true; } /** @@ -132,7 +132,7 @@ public function returnLobValues() */ public function returnLobObjects() { - $this->returnlobs = false; + $this->returnlobs = false; } /** @@ -146,29 +146,29 @@ public function returnLobObjects() */ public function getMode($numeric = false) { - if ($numeric === false) - { - if ($this->returnlobs) - { - $mode = OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS; - } - else - { - $mode = OCI_ASSOC+OCI_RETURN_NULLS; - } - } - else - { - if ($this->returnlobs) - { - $mode = OCI_NUM+OCI_RETURN_NULLS+OCI_RETURN_LOBS; - } - else - { - $mode = OCI_NUM+OCI_RETURN_NULLS; - } - } - - return $mode; + if ($numeric === false) + { + if ($this->returnlobs) + { + $mode = OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS; + } + else + { + $mode = OCI_ASSOC+OCI_RETURN_NULLS; + } + } + else + { + if ($this->returnlobs) + { + $mode = OCI_NUM+OCI_RETURN_NULLS+OCI_RETURN_LOBS; + } + else + { + $mode = OCI_NUM+OCI_RETURN_NULLS; + } + } + + return $mode; } }