Passed
Push — 1.0.0-dev ( fdf7af...dcffe3 )
by nguereza
03:39
created
core/classes/database/DatabaseCache.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@
 block discarded – undo
204 204
             //If is the SELECT query
205 205
             $this->isSqlSELECTQuery = stristr($this->query, 'SELECT') !== false;
206 206
 
207
-             //if can use cache feature for this query
207
+                //if can use cache feature for this query
208 208
             $this->dbCacheStatus = get_config('cache_enable', false) && $this->cacheTtl > 0;
209 209
         }
210 210
         
Please login to merge, or discard this 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 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -724,12 +724,12 @@
 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
             }
731 731
             return null;
732
-         }
732
+            }
733 733
 
734 734
 	
735 735
         /**
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
             $_keys = array();
421 421
             foreach ($keys as $k => $v) {
422 422
                 $v = $this->checkForNullValue($v);
423
-                if (! is_numeric($v)) {
423
+                if (!is_numeric($v)) {
424 424
                     $v = $this->escape($v, $escape);
425 425
                 }
426 426
                 $_keys[] = $v;
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
          * 
711 711
          * @return string|null
712 712
          */
713
-         protected function buildQueryPart($property, $command = ''){
713
+         protected function buildQueryPart($property, $command = '') {
714 714
             if (!empty($this->{$property})) {
715 715
                 return $command . ' ' . $this->{$property};
716 716
             }
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
          * @param string $clause the clause type "IS NULL", "IS NOT NULLs"
797 797
          * @return object        the current DatabaseQueryBuilder instance
798 798
          */
799
-        protected function whereIsNullAndNotNull($field, $andOr = 'AND', $clause = 'IS NULL'){
799
+        protected function whereIsNullAndNotNull($field, $andOr = 'AND', $clause = 'IS NULL') {
800 800
             if (is_array($field)) {
801 801
                 foreach ($field as $f) {
802 802
                     $this->whereIsNullAndNotNull($f, $andOr, $clause);
@@ -814,7 +814,7 @@  discard block
 block discarded – undo
814 814
          *
815 815
          * @return object the current instance
816 816
          */
817
-        protected function setSelectStr($newSelect){
817
+        protected function setSelectStr($newSelect) {
818 818
             $this->select = (($this->select == '*' || empty($this->select)) 
819 819
                                     ? $newSelect 
820 820
                                     : $this->select . ', ' . $newSelect);
@@ -828,8 +828,8 @@  discard block
 block discarded – undo
828 828
          * @return string        the empty string if the value is null
829 829
          * otherwise the same value will be returned
830 830
          */
831
-        protected function checkForNullValue($value){
832
-            if(is_null($value)){
831
+        protected function checkForNullValue($value) {
832
+            if (is_null($value)) {
833 833
                 return '';
834 834
             }
835 835
             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/database/Database.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
         if ($result) {
223 223
             $this->insertId = $this->pdo->lastInsertId();
224 224
             //if the table doesn't have the auto increment field or sequence, the value of 0 will be returned 
225
-             $id = $this->insertId;
225
+                $id = $this->insertId;
226 226
             if (!$id) {
227 227
                 $id = true;
228 228
             }
@@ -440,9 +440,9 @@  discard block
 block discarded – undo
440 440
             $this->queryCount++;
441 441
             
442 442
             $queryResult = $this->queryRunner->setQuery($query)
443
-                                             ->setReturnType($returnAsList)
444
-                                             ->setReturnAsArray($returnAsArray)
445
-                                             ->execute();
443
+                                                ->setReturnType($returnAsList)
444
+                                                ->setReturnAsArray($returnAsArray)
445
+                                                ->execute();
446 446
 
447 447
             if (is_object($queryResult)) {
448 448
                 $this->result  = $queryResult->getResult();
Please login to merge, or discard this patch.
core/classes/model/Model.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -746,22 +746,22 @@  discard block
 block discarded – undo
746 746
             return $this->loaderInstance;
747 747
         }
748 748
 
749
-         /**
750
-         * Get the return type array or object
751
-         * @return string|boolean
752
-         */
749
+            /**
750
+             * Get the return type array or object
751
+             * @return string|boolean
752
+             */
753 753
         protected function getReturnType(){
754 754
             $type = false;
755 755
             if ($this->_temporary_return_type == 'array') {
756
-               $type = 'array';
756
+                $type = 'array';
757 757
             }
758 758
             return $type;
759 759
         }
760 760
 
761
-         /**
762
-         * Check if soft delete is enable setting the condition
763
-         * @return object the current instance 
764
-         */
761
+            /**
762
+             * Check if soft delete is enable setting the condition
763
+             * @return object the current instance 
764
+             */
765 765
         protected function checkForSoftDelete(){
766 766
             if ($this->soft_delete && $this->_temporary_with_deleted !== true) {
767 767
                 $this->getQueryBuilder()->where($this->soft_delete_key, (bool) $this->_temporary_only_deleted);
@@ -769,14 +769,14 @@  discard block
 block discarded – undo
769 769
             return $this;
770 770
         }
771 771
 
772
-         /**
773
-         * Relate for "belongs_to" and "has_many"
774
-         * @param  string $relationship the name of relation
775
-         * @param  string|array $options      the model and primary key values
776
-         * @param  object|array $row          the row to update
777
-         * @param  string $type         the type can be "belongs_to", "has_many"
778
-         * @return mixed               the final row values
779
-         */
772
+            /**
773
+             * Relate for "belongs_to" and "has_many"
774
+             * @param  string $relationship the name of relation
775
+             * @param  string|array $options      the model and primary key values
776
+             * @param  object|array $row          the row to update
777
+             * @param  string $type         the type can be "belongs_to", "has_many"
778
+             * @return mixed               the final row values
779
+             */
780 780
         protected function relateBelongsToAndHasMany($relationship, $options, $row, $type){
781 781
             if (in_array($relationship, $this->_with)) {
782 782
                 $loaderInstance = $this->getLoaderInstanceOrCreate();
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
                 $instance = $db;
152 152
             } else {
153 153
                 $obj = & get_instance();
154
-                if (isset($obj->database)){
154
+                if (isset($obj->database)) {
155 155
                     /**
156 156
                      * NOTE: Need use "clone" because some Model need have the personal instance of the database library
157 157
                      * to prevent duplication
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
          * @return object
731 731
          */
732 732
         protected function getLoaderInstanceOrCreate() {
733
-            if (! is_object($this->loaderInstance)) {
733
+            if (!is_object($this->loaderInstance)) {
734 734
                 $this->loaderInstance = & get_instance()->loader;
735 735
             } 
736 736
             return $this->loaderInstance;
@@ -740,7 +740,7 @@  discard block
 block discarded – undo
740 740
          * Get the return type array or object
741 741
          * @return string|boolean
742 742
          */
743
-        protected function getReturnType(){
743
+        protected function getReturnType() {
744 744
             $type = false;
745 745
             if ($this->_temporary_return_type == 'array') {
746 746
                $type = 'array';
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
          * Check if soft delete is enable setting the condition
753 753
          * @return object the current instance 
754 754
          */
755
-        protected function checkForSoftDelete(){
755
+        protected function checkForSoftDelete() {
756 756
             if ($this->soft_delete && $this->_temporary_with_deleted !== true) {
757 757
                 $this->getQueryBuilder()->where($this->soft_delete_key, (bool) $this->_temporary_only_deleted);
758 758
             }
@@ -767,12 +767,12 @@  discard block
 block discarded – undo
767 767
          * @param  string $type         the type can be "belongs_to", "has_many"
768 768
          * @return mixed               the final row values
769 769
          */
770
-        protected function relateBelongsToAndHasMany($relationship, $options, $row, $type){
770
+        protected function relateBelongsToAndHasMany($relationship, $options, $row, $type) {
771 771
             if (in_array($relationship, $this->_with)) {
772 772
                 $loaderInstance = $this->getLoaderInstanceOrCreate();
773 773
                 $loaderInstance->model($options['model'], $relationship . '_model');
774 774
 
775
-                if($type == 'belongs_to'){
775
+                if ($type == 'belongs_to') {
776 776
                     if (is_object($row)) {
777 777
                         $row->{$relationship} = $this->{$relationship . '_model'}->get($row->{$options['primary_key']});
778 778
                     } else {
Please login to merge, or discard this patch.
core/classes/Loader.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
          * @param  string $appLang the application language, only if type = "language"
313 313
          * @return string|null          the full file path
314 314
          */
315
-        protected static function getDefaultFilePathForFunctionLanguage($file, $type, $appLang = null){
315
+        protected static function getDefaultFilePathForFunctionLanguage($file, $type, $appLang = null) {
316 316
             $searchDir = null;
317 317
             if ($type == 'function') {
318 318
                $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH);
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
          * @param  string|null $module the module if is not null will return it
339 339
          * @return string|null
340 340
          */
341
-        protected static function getModuleFromSuperController($module){
341
+        protected static function getModuleFromSuperController($module) {
342 342
             $obj = & get_instance();
343 343
             if (!$module && !empty($obj->moduleName)) {
344 344
                 $module = $obj->moduleName;
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -315,7 +315,7 @@
 block discarded – undo
315 315
         protected static function getDefaultFilePathForFunctionLanguage($file, $type, $appLang = null){
316 316
             $searchDir = null;
317 317
             if ($type == 'function') {
318
-               $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH);
318
+                $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH);
319 319
             }
320 320
             else if ($type == 'language') {
321 321
                 $searchDir = array(APP_LANG_PATH, CORE_LANG_PATH);
Please login to merge, or discard this patch.
core/libraries/FormValidation.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -355,13 +355,13 @@  discard block
 block discarded – undo
355 355
         public function setMessage() {
356 356
             $numArgs = func_num_args();
357 357
             if ($numArgs == 2) {
358
-               foreach ($this->post(null) as $key => $val) {
358
+                foreach ($this->post(null) as $key => $val) {
359 359
                     $this->_errorMsgOverrides[$key][func_get_arg(0)] = func_get_arg(1);
360 360
                 }
361 361
                 return true;
362 362
             } else if ($numArgs == 3) {
363 363
                 $this->_errorMsgOverrides[func_get_arg(1)][func_get_arg(0)] = func_get_arg(2);
364
-                 return true;
364
+                    return true;
365 365
             }
366 366
             return false;
367 367
         }
@@ -468,7 +468,7 @@  discard block
 block discarded – undo
468 468
                 if (!empty($regexRule[0])) {
469 469
                     $ruleSets[] = $regexRule[0];
470 470
                 }
471
-                 $ruleStringRegex = explode('|', $ruleStringTemp);
471
+                    $ruleStringRegex = explode('|', $ruleStringTemp);
472 472
                 foreach ($ruleStringRegex as $rule) {
473 473
                     $rule = trim($rule);
474 474
                     if ($rule) {
Please login to merge, or discard this patch.
core/libraries/Upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
          * Set the file array data generally in constructor this is already set using $_FILES
278 278
          * @param array $fileArray the new value
279 279
          */
280
-        public function setFileArray($fileArray){
280
+        public function setFileArray($fileArray) {
281 281
             $this->file_array = $fileArray;
282 282
         }
283 283
 
Please login to merge, or discard this patch.