Passed
Push — 1.0.0-dev ( ea6d41...cf37bc )
by nguereza
03:00
created
core/classes/database/DatabaseCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         public function getCacheContent() {
155 155
             //set some attributes values
156 156
             $this->setPropertiesValues();
157
-            if(! $this->isSqlSELECTQuery || ! $this->dbCacheStatus){
157
+            if (!$this->isSqlSELECTQuery || !$this->dbCacheStatus) {
158 158
                 $this->logger->info('The cache is not enabled for this query or is not a SELECT query'); 
159 159
                 return null;
160 160
             }
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         public function saveCacheContent($result) {
182 182
             //set some attributes values
183 183
             $this->setPropertiesValues();
184
-            if(! $this->isSqlSELECTQuery || ! $this->dbCacheStatus){
184
+            if (!$this->isSqlSELECTQuery || !$this->dbCacheStatus) {
185 185
                 //just return true
186 186
                 return true;
187 187
             }
Please login to merge, or discard this patch.
core/classes/database/DatabaseQueryBuilder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -724,7 +724,7 @@  discard block
 block discarded – undo
724 724
          * 
725 725
          * @return string|null
726 726
          */
727
-         protected function buildQueryPart($property, $command = ''){
727
+         protected function buildQueryPart($property, $command = '') {
728 728
             if (!empty($this->{$property})) {
729 729
                 return $command . ' ' . $this->{$property};
730 730
             }
@@ -809,7 +809,7 @@  discard block
 block discarded – undo
809 809
          *
810 810
          * @return object the current instance
811 811
          */
812
-        protected function setSelectStr($newSelect){
812
+        protected function setSelectStr($newSelect) {
813 813
             $this->select = (($this->select == '*' || empty($this->select)) 
814 814
                                     ? $newSelect 
815 815
                                     : $this->select . ', ' . $newSelect);
@@ -823,8 +823,8 @@  discard block
 block discarded – undo
823 823
          * @return string        the empty string if the value is null
824 824
          * otherwise the same value will be returned
825 825
          */
826
-        protected function checkForNullValue($value){
827
-            if(is_null($value)){
826
+        protected function checkForNullValue($value) {
827
+            if (is_null($value)) {
828 828
                 return '';
829 829
             }
830 830
             return $value;
Please login to merge, or discard this patch.
core/common.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         static $cfg;
149 149
         if (empty($cfg)) {
150 150
             $cfg[0] = & load_configurations();
151
-            if(! is_array($cfg[0])){
151
+            if (!is_array($cfg[0])) {
152 152
                 $cfg[0] = array();
153 153
             }
154 154
         }
Please login to merge, or discard this patch.
core/classes/DBSessionHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -343,7 +343,7 @@
 block discarded – undo
343 343
          * Get some parameters data need like ip address, hostname, browser info, etc.
344 344
          * @return array
345 345
          */
346
-        protected function getSessionDataParams(){
346
+        protected function getSessionDataParams() {
347 347
             $this->getLoader()->functions('user_agent'); 
348 348
             $this->getLoader()->library('Browser'); 
349 349
             
Please login to merge, or discard this patch.
core/classes/EventDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
             }
175 175
             //only test for original event may be during the flow some listeners change this parameter
176 176
             if ($eBackup->returnBack) {
177
-                if(! $error) {
177
+                if (!$error) {
178 178
                     return $event;
179 179
                 }
180 180
                 return null;
Please login to merge, or discard this patch.