Test Failed
Push — 1.0.0-dev ( 252b0d...ee03cc )
by nguereza
02:32
created
core/libraries/Pagination.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
         }
91 91
 
92 92
         /**
93
-        * Set the value of the pagination query string
94
-        * @param string $pQueryString the new value
95
-        * @return object
96
-        */
93
+         * Set the value of the pagination query string
94
+         * @param string $pQueryString the new value
95
+         * @return object
96
+         */
97 97
         public function setPaginationQueryString($pQueryString) {
98 98
             $this->paginationQueryString = $pQueryString;
99 99
             return $this;
@@ -244,15 +244,15 @@  discard block
 block discarded – undo
244 244
                 }
245 245
             }
246 246
             $navbar .= $this->config['next_open'] . '<a href="' . $query . ($currentPageNumber + 1) . '">' 
247
-                       . $this->config['next_text'] . '</a>' . $this->config['next_close'];
247
+                        . $this->config['next_text'] . '</a>' . $this->config['next_close'];
248 248
             return $navbar;
249 249
         }
250 250
 
251 251
 
252
-         /**
253
-         * Build the pagination link for the first page
254
-         * @see Pagination::buildPaginationLinkForFirstAndLastPage
255
-         */
252
+            /**
253
+             * Build the pagination link for the first page
254
+             * @see Pagination::buildPaginationLinkForFirstAndLastPage
255
+             */
256 256
         protected function buildPaginationLinkForFirstPage($begin, $end, $currentPageNumber) {
257 257
             return $this->buildPaginationLinkForFirstAndLastPage($begin, $end, $currentPageNumber, 'first');
258 258
         }
Please login to merge, or discard this patch.
core/libraries/FormValidation.php 1 patch
Indentation   +208 added lines, -208 removed lines patch added patch discarded remove patch
@@ -133,11 +133,11 @@  discard block
 block discarded – undo
133 133
             }
134 134
         }
135 135
 
136
-         /**
137
-         * Reset the form validation instance
138
-         *
139
-         * @return object the current instance
140
-         */
136
+            /**
137
+             * Reset the form validation instance
138
+             *
139
+             * @return object the current instance
140
+             */
141 141
         public function reset() {
142 142
             $this->rules        = array();
143 143
             $this->labels       = array();
@@ -161,11 +161,11 @@  discard block
 block discarded – undo
161 161
             return $this;
162 162
         }
163 163
 
164
-         /**
165
-         * Return the validation data
166
-         * 
167
-         * @return array the validation data
168
-         */
164
+            /**
165
+             * Return the validation data
166
+             * 
167
+             * @return array the validation data
168
+             */
169 169
         public function getData() {
170 170
             return $this->data;
171 171
         }
@@ -214,11 +214,11 @@  discard block
 block discarded – undo
214 214
             return $this->rules;
215 215
         }
216 216
 
217
-         /**
218
-         * Return the list of the validations rules for the given field
219
-         * 
220
-         * @return array
221
-         */
217
+            /**
218
+             * Return the list of the validations rules for the given field
219
+             * 
220
+             * @return array
221
+             */
222 222
         public function getFieldRules($field) {
223 223
             $rules = array();
224 224
             if (array_key_exists($field, $this->rules)) {
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
          * @return string|null
235 235
          */
236 236
         public function getFieldValue($field) {
237
-             $value = null;
237
+                $value = null;
238 238
             if (array_key_exists($field, $this->data)) {
239 239
                 $value = $this->data[$field];
240 240
             }
@@ -256,15 +256,15 @@  discard block
 block discarded – undo
256 256
         }
257 257
             
258 258
         
259
-       /**
260
-        * Return the list of validation errors
261
-        * 
262
-        * @return array the errors list. 
263
-        * Format:
264
-        *  [field1] => 'error message 1', 
265
-        *  [field2] => 'error message 2' 
266
-        */
267
-       public function getErrors() {
259
+        /**
260
+         * Return the list of validation errors
261
+         * 
262
+         * @return array the errors list. 
263
+         * Format:
264
+         *  [field1] => 'error message 1', 
265
+         *  [field2] => 'error message 2' 
266
+         */
267
+        public function getErrors() {
268 268
             return $this->errors;
269 269
         }
270 270
 
@@ -347,11 +347,11 @@  discard block
 block discarded – undo
347 347
             return $this;
348 348
         }
349 349
 
350
-         /**
351
-         * Set the database instance using get_instance() if is null
352
-         *
353
-         * @return object the current instance
354
-         */
350
+            /**
351
+             * Set the database instance using get_instance() if is null
352
+             *
353
+             * @return object the current instance
354
+             */
355 355
         protected function setDatabaseFromSuperInstanceIfNotSet() {
356 356
             if (!is_object($this->database)) {
357 357
                 $this->database = get_instance()->database;
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
          * @param string|null $field2     the second field used in some validation rule like "matches", "not_equal"
389 389
          *
390 390
          */
391
-         protected function setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue = null, $field2 = null) {
391
+            protected function setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue = null, $field2 = null) {
392 392
             //if the field is not required and his value is not set don't set error
393 393
             //but in case the field have value validate it
394 394
             if (!$this->fieldIsRequired($field) && strlen($value) <= 0) {
@@ -432,9 +432,9 @@  discard block
 block discarded – undo
432 432
          * @return string       the name of the validation method
433 433
          */
434 434
         protected function getRuleValidationMethod($rule) {
435
-             $parts = explode('_', $rule);
436
-             $parts = array_map('ucfirst', $parts);
437
-             return 'checkRule' . implode('', $parts);
435
+                $parts = explode('_', $rule);
436
+                $parts = array_map('ucfirst', $parts);
437
+                return 'checkRule' . implode('', $parts);
438 438
         }
439 439
         
440 440
         /**
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
         protected function filterValidationData() {
446 446
             foreach ($this->data as $key => $value ) {
447 447
                 if (is_string($value)) {
448
-                   $this->data[$key] = trim($value);
448
+                    $this->data[$key] = trim($value);
449 449
                 } else if(is_array($value)) {
450 450
                     $this->data[$key] = array_map('trim', $value);
451 451
                 }
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
                 $template['field2}']  = $field2;
493 493
                 $template['{value2}'] = $this->getFieldValue($field2);
494 494
                 $template['{label2}'] = $this->getFieldLabel($field2);
495
-             }     
495
+                }     
496 496
             $message = $this->messages[$rule];
497 497
             //Check for custom message
498 498
             if (isset($this->customErrors[$field][$rule])) {
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
                 //Get the name of the method to validate this rule
524 524
                 $method = $this->getRuleValidationMethod($realRuleName);
525 525
                 if (method_exists($this, $method)) {
526
-                       call_user_func_array(array($this, $method), array($field, $realRuleName, $paramValue));
526
+                        call_user_func_array(array($this, $method), array($field, $realRuleName, $paramValue));
527 527
                 } else {
528 528
                     $this->forceError = true;
529 529
                     show_error('Invalid validaton rule "' . $realRuleName . '"');
@@ -615,14 +615,14 @@  discard block
 block discarded – undo
615 615
          * @param  string|null  $paramValue  the rule parameter
616 616
          */ 
617 617
         protected function checkRuleMinLength($field, $rule, $paramValue) {
618
-           $value = $this->getFieldValue($field);  
619
-           $this->setSmpleFieldError(
620
-                                     strlen($value) < $paramValue, 
621
-                                     $field, 
622
-                                     $value, 
623
-                                     $rule, 
624
-                                     $paramValue
625
-                                 );
618
+            $value = $this->getFieldValue($field);  
619
+            $this->setSmpleFieldError(
620
+                                        strlen($value) < $paramValue, 
621
+                                        $field, 
622
+                                        $value, 
623
+                                        $rule, 
624
+                                        $paramValue
625
+                                    );
626 626
         }
627 627
 
628 628
         /**
@@ -633,14 +633,14 @@  discard block
 block discarded – undo
633 633
          * @param  string|null  $paramValue  the rule parameter
634 634
          */
635 635
         protected function checkRuleMaxLength($field, $rule, $paramValue) {
636
-           $value = $this->getFieldValue($field);
637
-           $this->setSmpleFieldError(
638
-                                     strlen($value) > $paramValue, 
639
-                                     $field, 
640
-                                     $value, 
641
-                                     $rule, 
642
-                                     $paramValue
643
-                                 );
636
+            $value = $this->getFieldValue($field);
637
+            $this->setSmpleFieldError(
638
+                                        strlen($value) > $paramValue, 
639
+                                        $field, 
640
+                                        $value, 
641
+                                        $rule, 
642
+                                        $paramValue
643
+                                    );
644 644
         }
645 645
 
646 646
         /**
@@ -651,14 +651,14 @@  discard block
 block discarded – undo
651 651
          * @param  string|null  $paramValue  the rule parameter
652 652
          */
653 653
         protected function checkRuleExactLength($field, $rule, $paramValue) {
654
-           $value = $this->getFieldValue($field);
655
-           $this->setSmpleFieldError(
656
-                                     strlen($value) != $paramValue, 
657
-                                     $field, 
658
-                                     $value, 
659
-                                     $rule, 
660
-                                     $paramValue
661
-                                 );
654
+            $value = $this->getFieldValue($field);
655
+            $this->setSmpleFieldError(
656
+                                        strlen($value) != $paramValue, 
657
+                                        $field, 
658
+                                        $value, 
659
+                                        $rule, 
660
+                                        $paramValue
661
+                                    );
662 662
         }
663 663
 
664 664
         /**
@@ -671,13 +671,13 @@  discard block
 block discarded – undo
671 671
         protected function checkRuleMatches($field, $rule, $paramValue) {
672 672
             $value = $this->getFieldValue($field);    
673 673
             $this->setSmpleFieldError(
674
-                                     $value != $this->getFieldValue($paramValue), 
675
-                                     $field, 
676
-                                     $value, 
677
-                                     $rule, 
678
-                                     $paramValue,
679
-                                     $paramValue //field2
680
-                                 );
674
+                                        $value != $this->getFieldValue($paramValue), 
675
+                                        $field, 
676
+                                        $value, 
677
+                                        $rule, 
678
+                                        $paramValue,
679
+                                        $paramValue //field2
680
+                                    );
681 681
         }
682 682
 
683 683
         /**
@@ -690,13 +690,13 @@  discard block
 block discarded – undo
690 690
         protected function checkRuleNotEqual($field, $rule, $paramValue) {
691 691
             $value = $this->getFieldValue($field);    
692 692
             $this->setSmpleFieldError(
693
-                                     $value == $this->getFieldValue($paramValue), 
694
-                                     $field, 
695
-                                     $value, 
696
-                                     $rule, 
697
-                                     $paramValue,
698
-                                     $paramValue //field2
699
-                                 );
693
+                                        $value == $this->getFieldValue($paramValue), 
694
+                                        $field, 
695
+                                        $value, 
696
+                                        $rule, 
697
+                                        $paramValue,
698
+                                        $paramValue //field2
699
+                                    );
700 700
         }
701 701
 
702 702
         /**
@@ -709,12 +709,12 @@  discard block
 block discarded – undo
709 709
         protected function checkRuleMin($field, $rule, $paramValue) {
710 710
             $value = $this->getFieldValue($field);  
711 711
             $this->setSmpleFieldError(
712
-                                 $value < $paramValue, 
713
-                                 $field, 
714
-                                 $value, 
715
-                                 $rule, 
716
-                                 $paramValue
717
-                             );
712
+                                    $value < $paramValue, 
713
+                                    $field, 
714
+                                    $value, 
715
+                                    $rule, 
716
+                                    $paramValue
717
+                                );
718 718
         }
719 719
 
720 720
         /**
@@ -727,12 +727,12 @@  discard block
 block discarded – undo
727 727
         protected function checkRuleMax($field, $rule, $paramValue) {
728 728
             $value = $this->getFieldValue($field); 
729 729
             $this->setSmpleFieldError(
730
-                                 $value > $paramValue, 
731
-                                 $field, 
732
-                                 $value, 
733
-                                 $rule, 
734
-                                 $paramValue
735
-                             );
730
+                                    $value > $paramValue, 
731
+                                    $field, 
732
+                                    $value, 
733
+                                    $rule, 
734
+                                    $paramValue
735
+                                );
736 736
         }
737 737
 
738 738
         /**
@@ -748,12 +748,12 @@  discard block
 block discarded – undo
748 748
             $betweens = explode(',', $paramValue, 2);
749 749
             $betweens = array_map('trim', $betweens);
750 750
             $this->setSmpleFieldError(
751
-                                 ($value < $betweens[0]) || ($value > $betweens[1]), 
752
-                                 $field, 
753
-                                 $value, 
754
-                                 $rule, 
755
-                                 $paramValue
756
-                             );
751
+                                    ($value < $betweens[0]) || ($value > $betweens[1]), 
752
+                                    $field, 
753
+                                    $value, 
754
+                                    $rule, 
755
+                                    $paramValue
756
+                                );
757 757
         }
758 758
 
759 759
         /**
@@ -770,12 +770,12 @@  discard block
 block discarded – undo
770 770
             $list = array_map('trim', $list);
771 771
             $paramValue = implode(',', $list);
772 772
             $this->setSmpleFieldError(
773
-                                 !in_array($value, $list), 
774
-                                 $field, 
775
-                                 $value, 
776
-                                 $rule, 
777
-                                 $paramValue
778
-                             ); 
773
+                                    !in_array($value, $list), 
774
+                                    $field, 
775
+                                    $value, 
776
+                                    $rule, 
777
+                                    $paramValue
778
+                                ); 
779 779
         }
780 780
 
781 781
         /**
@@ -788,12 +788,12 @@  discard block
 block discarded – undo
788 788
         protected function checkRuleNumeric($field, $rule, $paramValue) {
789 789
             $value = $this->getFieldValue($field);    
790 790
             $this->setSmpleFieldError(
791
-                                 !is_numeric($value), 
792
-                                 $field, 
793
-                                 $value, 
794
-                                 $rule, 
795
-                                 $paramValue
796
-                             );
791
+                                    !is_numeric($value), 
792
+                                    $field, 
793
+                                    $value, 
794
+                                    $rule, 
795
+                                    $paramValue
796
+                                );
797 797
         }
798 798
 
799 799
         /**
@@ -805,13 +805,13 @@  discard block
 block discarded – undo
805 805
          */
806 806
         protected function checkRuleInteger($field, $rule, $paramValue) {
807 807
             $value = $this->getFieldValue($field);  
808
-             $this->setSmpleFieldError(
809
-                                 filter_var($value, FILTER_VALIDATE_INT) === false, 
810
-                                 $field, 
811
-                                 $value, 
812
-                                 $rule, 
813
-                                 $paramValue
814
-                             );
808
+                $this->setSmpleFieldError(
809
+                                    filter_var($value, FILTER_VALIDATE_INT) === false, 
810
+                                    $field, 
811
+                                    $value, 
812
+                                    $rule, 
813
+                                    $paramValue
814
+                                );
815 815
         }
816 816
 
817 817
         /**
@@ -824,12 +824,12 @@  discard block
 block discarded – undo
824 824
         protected function checkRuleIntegerNatural($field, $rule, $paramValue) {
825 825
             $value = $this->getFieldValue($field);
826 826
             $this->setSmpleFieldError(
827
-                                 filter_var($value, FILTER_VALIDATE_INT) === false || $value < 0, 
828
-                                 $field, 
829
-                                 $value, 
830
-                                 $rule, 
831
-                                 $paramValue
832
-                             );
827
+                                    filter_var($value, FILTER_VALIDATE_INT) === false || $value < 0, 
828
+                                    $field, 
829
+                                    $value, 
830
+                                    $rule, 
831
+                                    $paramValue
832
+                                );
833 833
         }
834 834
 
835 835
         /**
@@ -842,12 +842,12 @@  discard block
 block discarded – undo
842 842
         protected function checkRuleAlpha($field, $rule, $paramValue) {
843 843
             $value = $this->getFieldValue($field);
844 844
             $this->setSmpleFieldError(
845
-                                 !preg_match('/^[\pL\pM\s]+$/u', $value), 
846
-                                 $field, 
847
-                                 $value, 
848
-                                 $rule, 
849
-                                 $paramValue
850
-                             );
845
+                                    !preg_match('/^[\pL\pM\s]+$/u', $value), 
846
+                                    $field, 
847
+                                    $value, 
848
+                                    $rule, 
849
+                                    $paramValue
850
+                                );
851 851
         }
852 852
 
853 853
         /**
@@ -860,12 +860,12 @@  discard block
 block discarded – undo
860 860
         protected function checkRuleAlphaDash($field, $rule, $paramValue) {
861 861
             $value = $this->getFieldValue($field);
862 862
             $this->setSmpleFieldError(
863
-                                 !preg_match('/^[\pL\pM_-]+$/u', $value), 
864
-                                 $field, 
865
-                                 $value, 
866
-                                 $rule, 
867
-                                 $paramValue
868
-                             );
863
+                                    !preg_match('/^[\pL\pM_-]+$/u', $value), 
864
+                                    $field, 
865
+                                    $value, 
866
+                                    $rule, 
867
+                                    $paramValue
868
+                                );
869 869
         }
870 870
 
871 871
         /**
@@ -878,12 +878,12 @@  discard block
 block discarded – undo
878 878
         protected function checkRuleAlnum($field, $rule, $paramValue) {
879 879
             $value = $this->getFieldValue($field);
880 880
             $this->setSmpleFieldError(
881
-                                 !preg_match('/^[\pL\pM\pN\s]+$/u', $value), 
882
-                                 $field, 
883
-                                 $value, 
884
-                                 $rule, 
885
-                                 $paramValue
886
-                             );
881
+                                    !preg_match('/^[\pL\pM\pN\s]+$/u', $value), 
882
+                                    $field, 
883
+                                    $value, 
884
+                                    $rule, 
885
+                                    $paramValue
886
+                                );
887 887
         }
888 888
 
889 889
         /**
@@ -896,12 +896,12 @@  discard block
 block discarded – undo
896 896
         protected function checkRuleAlnumDash($field, $rule, $paramValue) {
897 897
             $value = $this->getFieldValue($field);
898 898
             $this->setSmpleFieldError(
899
-                                 !preg_match('/^[\pL\pM\pN_-]+$/u', $value), 
900
-                                 $field, 
901
-                                 $value, 
902
-                                 $rule, 
903
-                                 $paramValue
904
-                             );
899
+                                    !preg_match('/^[\pL\pM\pN_-]+$/u', $value), 
900
+                                    $field, 
901
+                                    $value, 
902
+                                    $rule, 
903
+                                    $paramValue
904
+                                );
905 905
         }
906 906
 
907 907
         /**
@@ -914,12 +914,12 @@  discard block
 block discarded – undo
914 914
         protected function checkRuleEmail($field, $rule, $paramValue) {
915 915
             $value = $this->getFieldValue($field); 
916 916
             $this->setSmpleFieldError(
917
-                                 filter_var($value, FILTER_VALIDATE_EMAIL) === false, 
918
-                                 $field, 
919
-                                 $value, 
920
-                                 $rule, 
921
-                                 $paramValue
922
-                             );
917
+                                    filter_var($value, FILTER_VALIDATE_EMAIL) === false, 
918
+                                    $field, 
919
+                                    $value, 
920
+                                    $rule, 
921
+                                    $paramValue
922
+                                );
923 923
         }
924 924
 
925 925
         /**
@@ -935,12 +935,12 @@  discard block
 block discarded – undo
935 935
             $format = $paramValue;
936 936
             $dateValue = date_create_from_format($format, $value);  
937 937
             $this->setSmpleFieldError(
938
-                                 $dateValue === false || $dateValue->format($format) !== $value, 
939
-                                 $field, 
940
-                                 $value, 
941
-                                 $rule, 
942
-                                 $paramValue
943
-                             );
938
+                                    $dateValue === false || $dateValue->format($format) !== $value, 
939
+                                    $field, 
940
+                                    $value, 
941
+                                    $rule, 
942
+                                    $paramValue
943
+                                );
944 944
         }
945 945
 
946 946
         /**
@@ -953,13 +953,13 @@  discard block
 block discarded – undo
953 953
          */
954 954
         protected function checkRuleDateBefore($field, $rule, $paramValue) {
955 955
             $value = $this->getFieldValue($field);
956
-             $this->setSmpleFieldError(
957
-                                 strtotime($value) >= strtotime($paramValue), 
958
-                                 $field, 
959
-                                 $value, 
960
-                                 $rule, 
961
-                                 $paramValue
962
-                             );
956
+                $this->setSmpleFieldError(
957
+                                    strtotime($value) >= strtotime($paramValue), 
958
+                                    $field, 
959
+                                    $value, 
960
+                                    $rule, 
961
+                                    $paramValue
962
+                                );
963 963
         }
964 964
 
965 965
         /**
@@ -973,12 +973,12 @@  discard block
 block discarded – undo
973 973
         protected function checkRuleDateAfter($field, $rule, $paramValue) {
974 974
             $value = $this->getFieldValue($field);
975 975
             $this->setSmpleFieldError(
976
-                                 strtotime($value) <= strtotime($paramValue), 
977
-                                 $field, 
978
-                                 $value, 
979
-                                 $rule, 
980
-                                 $paramValue
981
-                             );
976
+                                    strtotime($value) <= strtotime($paramValue), 
977
+                                    $field, 
978
+                                    $value, 
979
+                                    $rule, 
980
+                                    $paramValue
981
+                                );
982 982
         }
983 983
 
984 984
         /**
@@ -991,12 +991,12 @@  discard block
 block discarded – undo
991 991
         protected function checkRuleUrl($field, $rule, $paramValue) {
992 992
             $value = $this->getFieldValue($field);
993 993
             $this->setSmpleFieldError(
994
-                                 filter_var($value, FILTER_VALIDATE_URL) === false, 
995
-                                 $field, 
996
-                                 $value, 
997
-                                 $rule, 
998
-                                 $paramValue
999
-                             );
994
+                                    filter_var($value, FILTER_VALIDATE_URL) === false, 
995
+                                    $field, 
996
+                                    $value, 
997
+                                    $rule, 
998
+                                    $paramValue
999
+                                );
1000 1000
         }
1001 1001
 
1002 1002
         /**
@@ -1010,12 +1010,12 @@  discard block
 block discarded – undo
1010 1010
         protected function checkRuleIp($field, $rule, $paramValue) {
1011 1011
             $value = $this->getFieldValue($field);   
1012 1012
             $this->setSmpleFieldError(
1013
-                                 filter_var($value, FILTER_VALIDATE_IP) === false, 
1014
-                                 $field, 
1015
-                                 $value, 
1016
-                                 $rule, 
1017
-                                 $paramValue
1018
-                             );
1013
+                                    filter_var($value, FILTER_VALIDATE_IP) === false, 
1014
+                                    $field, 
1015
+                                    $value, 
1016
+                                    $rule, 
1017
+                                    $paramValue
1018
+                                );
1019 1019
         }
1020 1020
 
1021 1021
         /**
@@ -1028,12 +1028,12 @@  discard block
 block discarded – undo
1028 1028
         protected function checkRuleIpv4($field, $rule, $paramValue) {
1029 1029
             $value = $this->getFieldValue($field);  
1030 1030
             $this->setSmpleFieldError(
1031
-                                 filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === false, 
1032
-                                 $field, 
1033
-                                 $value, 
1034
-                                 $rule, 
1035
-                                 $paramValue
1036
-                             );
1031
+                                    filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === false, 
1032
+                                    $field, 
1033
+                                    $value, 
1034
+                                    $rule, 
1035
+                                    $paramValue
1036
+                                );
1037 1037
         }
1038 1038
 
1039 1039
         /**
@@ -1046,12 +1046,12 @@  discard block
 block discarded – undo
1046 1046
         protected function checkRuleIpv6($field, $rule, $paramValue) {
1047 1047
             $value = $this->getFieldValue($field);   
1048 1048
             $this->setSmpleFieldError(
1049
-                                 filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) === false, 
1050
-                                 $field, 
1051
-                                 $value, 
1052
-                                 $rule, 
1053
-                                 $paramValue
1054
-                             );
1049
+                                    filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) === false, 
1050
+                                    $field, 
1051
+                                    $value, 
1052
+                                    $rule, 
1053
+                                    $paramValue
1054
+                                );
1055 1055
         }
1056 1056
 
1057 1057
         /**
@@ -1067,7 +1067,7 @@  discard block
 block discarded – undo
1067 1067
             $value = $this->getFieldValue($field);    
1068 1068
             list($table, $column) = explode('.', $paramValue);
1069 1069
             $this->database->getQueryBuilder()->from($table)
1070
-                                              ->where($column, $value);
1070
+                                                ->where($column, $value);
1071 1071
             $this->database->get();
1072 1072
             if ($this->database->numRows() > 0) {
1073 1073
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
@@ -1089,8 +1089,8 @@  discard block
 block discarded – undo
1089 1089
             list($table, $column) = explode('.', $data[0]);
1090 1090
             list($columnKey, $valueKey) = explode('=', $data[1]);
1091 1091
             $this->database->getQueryBuilder()->from($table)
1092
-                                              ->where($column, $value)
1093
-                                              ->where($columnKey, '!=', trim($valueKey));
1092
+                                                ->where($column, $value)
1093
+                                                ->where($columnKey, '!=', trim($valueKey));
1094 1094
             $this->database->get();
1095 1095
             if ($this->database->numRows() > 0) {
1096 1096
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
@@ -1110,7 +1110,7 @@  discard block
 block discarded – undo
1110 1110
             $value = $this->getFieldValue($field);    
1111 1111
             list($table, $column) = explode('.', $paramValue);
1112 1112
             $this->database->getQueryBuilder()->from($table)
1113
-                                              ->where($column, $value);
1113
+                                                ->where($column, $value);
1114 1114
             $this->database->get();
1115 1115
             if ($this->database->numRows() <= 0) {
1116 1116
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
@@ -1127,13 +1127,13 @@  discard block
 block discarded – undo
1127 1127
          */
1128 1128
         protected function checkRuleRegex($field, $rule, $paramValue) {
1129 1129
             $value = $this->getFieldValue($field);
1130
-             $this->setSmpleFieldError(
1131
-                                 !preg_match($paramValue, $value), 
1132
-                                 $field, 
1133
-                                 $value, 
1134
-                                 $rule, 
1135
-                                 $paramValue
1136
-                             );       
1130
+                $this->setSmpleFieldError(
1131
+                                    !preg_match($paramValue, $value), 
1132
+                                    $field, 
1133
+                                    $value, 
1134
+                                    $rule, 
1135
+                                    $paramValue
1136
+                                );       
1137 1137
         }
1138 1138
 
1139 1139
         /**
@@ -1155,12 +1155,12 @@  discard block
 block discarded – undo
1155 1155
             $value = $this->getFieldValue($field);    
1156 1156
             if (is_callable($paramValue)) {
1157 1157
                 $this->setSmpleFieldError(
1158
-                                 call_user_func_array($paramValue, array($value)) === false, 
1159
-                                 $field, 
1160
-                                 $value, 
1161
-                                 $rule, 
1162
-                                 $paramValue
1163
-                             ); 
1158
+                                    call_user_func_array($paramValue, array($value)) === false, 
1159
+                                    $field, 
1160
+                                    $value, 
1161
+                                    $rule, 
1162
+                                    $paramValue
1163
+                                ); 
1164 1164
             } else{
1165 1165
                 $this->forceError = true;
1166 1166
                 show_error('The callback validation function/method "' . $paramValue . '" does not exist');
Please login to merge, or discard this patch.
core/libraries/Upload.php 1 patch
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -277,10 +277,10 @@  discard block
 block discarded – undo
277 277
             return $this;
278 278
         }
279 279
 
280
-         /**
281
-         *    Get the uploade file array
282
-         *    @return    array
283
-         */
280
+            /**
281
+             *    Get the uploade file array
282
+             *    @return    array
283
+             */
284 284
         public function getUploadedFileData() {
285 285
             return $this->uploadedFileData;
286 286
         }
@@ -320,10 +320,10 @@  discard block
 block discarded – undo
320 320
             return $this;
321 321
         }
322 322
 
323
-         /**
324
-         *    Get the filename
325
-         *    @return    string
326
-         */
323
+            /**
324
+             *    Get the filename
325
+             *    @return    string
326
+             */
327 327
         public function getFilename() {
328 328
             return $this->filename;
329 329
         }
@@ -352,23 +352,23 @@  discard block
 block discarded – undo
352 352
             return $this;
353 353
         }
354 354
 
355
-         /**
356
-         *    Get the max file size
357
-         *    @return    double|int
358
-         */
355
+            /**
356
+             *    Get the max file size
357
+             *    @return    double|int
358
+             */
359 359
         public function getMaxFileSize() {
360 360
             return $this->maxFileSize;
361 361
         }
362 362
 
363
-         /**
364
-         *    Append a mime type to allowed mime types
365
-         *
366
-         *    @since     1.0
367
-         *    @version   1.0.1
368
-         *    @param     string      $mime
369
-         *    @return    object
370
-         *    @method    boolean     setAllowMimeType
371
-         */
363
+            /**
364
+             *    Append a mime type to allowed mime types
365
+             *
366
+             *    @since     1.0
367
+             *    @version   1.0.1
368
+             *    @param     string      $mime
369
+             *    @return    object
370
+             *    @method    boolean     setAllowMimeType
371
+             */
372 372
         public function setAllowMimeType($mime) {
373 373
             $this->allowedMimeTypes[] = strtolower($mime);
374 374
             $this->file['allowed_mime_types'][] = strtolower($mime); 
@@ -485,10 +485,10 @@  discard block
 block discarded – undo
485 485
             return $this;
486 486
         }
487 487
 
488
-         /**
489
-         *    Get the upload function name like "copy", "move_uploaded_file"
490
-         *    @return    string
491
-         */
488
+            /**
489
+             *    Get the upload function name like "copy", "move_uploaded_file"
490
+             *    @return    string
491
+             */
492 492
         public function getUploadFunction() {
493 493
             return $this->uploadFunction;
494 494
         }
@@ -506,10 +506,10 @@  discard block
 block discarded – undo
506 506
             return $this;
507 507
         }
508 508
 
509
-         /**
510
-         *    Get the allow overwriting
511
-         *    @return    boolean
512
-         */
509
+            /**
510
+             *    Get the allow overwriting
511
+             *    @return    boolean
512
+             */
513 513
         public function isAllowOverwriting() {
514 514
             return $this->overwriteFile ;
515 515
         }
@@ -614,14 +614,14 @@  discard block
 block discarded – undo
614 614
             return $this->error;
615 615
         }
616 616
 
617
-         /**
618
-         *    Retrive status of upload
619
-         *
620
-         *    @since     1.0
621
-         *    @version   1.0
622
-         *    @return    boolean
623
-         *    @method    boolean    getStatus
624
-         */
617
+            /**
618
+             *    Retrive status of upload
619
+             *
620
+             *    @since     1.0
621
+             *    @version   1.0
622
+             *    @return    boolean
623
+             *    @method    boolean    getStatus
624
+             */
625 625
         public function getStatus() {
626 626
             return $this->file['status'];
627 627
         }
@@ -654,11 +654,11 @@  discard block
 block discarded – undo
654 654
                                 && is_file($file);
655 655
         }
656 656
 
657
-         /**
658
-         * Set the filename if is empty using the uploaded data information
659
-         *
660
-         * @return object the current instance
661
-         */
657
+            /**
658
+             * Set the filename if is empty using the uploaded data information
659
+             *
660
+             * @return object the current instance
661
+             */
662 662
         protected function setFilenameUsingUploadedData() {
663 663
             // set original filename if not have a new name
664 664
             if (empty($this->filename)) {
@@ -742,12 +742,12 @@  discard block
 block discarded – undo
742 742
             return $this->maxFileSize >= $size;
743 743
         }
744 744
 
745
-         /**
746
-         *    Check the file overwritting
747
-         *    @since     1.0
748
-         *    @version   1.0
749
-         *    @return    boolean
750
-         */
745
+            /**
746
+             *    Check the file overwritting
747
+             *    @since     1.0
748
+             *    @version   1.0
749
+             *    @return    boolean
750
+             */
751 751
         protected function checkFileOverwritting() {
752 752
             if ($this->fileExists($this->destinationDirectory . $this->filename)) {
753 753
                 return $this->overwriteFile;
Please login to merge, or discard this patch.
core/libraries/Browser.php 1 patch
Indentation   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-	defined('ROOT_PATH') || exit('Access denied');
2
+    defined('ROOT_PATH') || exit('Access denied');
3 3
     /**
4 4
      * TNH Framework
5 5
      *
@@ -28,68 +28,68 @@  discard block
 block discarded – undo
28 28
      * SOFTWARE.
29 29
      */
30 30
     
31
-	class Browser {
32
-
33
-		/**
34
-		 * List of know platforms
35
-		 * @var array
36
-		 */
37
-		private $platforms = array(
38
-									'/windows nt 10/i'      =>  'Windows 10',
39
-									'/windows phone 10/i'   =>  'Windows Phone 10',
40
-									'/windows phone 8.1/i'  =>  'Windows Phone 8.1',
41
-									'/windows phone 8/i'    =>  'Windows Phone 8',
42
-									'/windows nt 6.3/i'     =>  'Windows 8.1',
43
-									'/windows nt 6.2/i'     =>  'Windows 8',
44
-									'/windows nt 6.1/i'     =>  'Windows 7',
45
-									'/windows nt 6.0/i'     =>  'Windows Vista',
46
-									'/windows nt 5.2/i'     =>  'Windows Server 2003/XP x64',
47
-									'/windows nt 5.1/i'     =>  'Windows XP',
48
-									'/windows xp/i'         =>  'Windows XP',
49
-									'/windows nt 5.0/i'     =>  'Windows 2000',
50
-									'/windows me/i'         =>  'Windows ME',
51
-									'/win98/i'              =>  'Windows 98',
52
-									'/win95/i'              =>  'Windows 95',
53
-									'/win16/i'              =>  'Windows 3.11',
54
-									'/ipad/i'               =>  'iPad',
31
+    class Browser {
32
+
33
+        /**
34
+         * List of know platforms
35
+         * @var array
36
+         */
37
+        private $platforms = array(
38
+                                    '/windows nt 10/i'      =>  'Windows 10',
39
+                                    '/windows phone 10/i'   =>  'Windows Phone 10',
40
+                                    '/windows phone 8.1/i'  =>  'Windows Phone 8.1',
41
+                                    '/windows phone 8/i'    =>  'Windows Phone 8',
42
+                                    '/windows nt 6.3/i'     =>  'Windows 8.1',
43
+                                    '/windows nt 6.2/i'     =>  'Windows 8',
44
+                                    '/windows nt 6.1/i'     =>  'Windows 7',
45
+                                    '/windows nt 6.0/i'     =>  'Windows Vista',
46
+                                    '/windows nt 5.2/i'     =>  'Windows Server 2003/XP x64',
47
+                                    '/windows nt 5.1/i'     =>  'Windows XP',
48
+                                    '/windows xp/i'         =>  'Windows XP',
49
+                                    '/windows nt 5.0/i'     =>  'Windows 2000',
50
+                                    '/windows me/i'         =>  'Windows ME',
51
+                                    '/win98/i'              =>  'Windows 98',
52
+                                    '/win95/i'              =>  'Windows 95',
53
+                                    '/win16/i'              =>  'Windows 3.11',
54
+                                    '/ipad/i'               =>  'iPad',
55 55
                                     '/ipod/i'               =>  'iPod',
56 56
                                     '/iphone/i'             =>  'iPhone',
57 57
                                     '/macintosh|mac os x/i' =>  'Mac OS X',
58
-									'/mac_powerpc/i'        =>  'Mac OS 9',
59
-									'/android/i'            =>  'Android',
60
-									'/ubuntu/i'             =>  'Ubuntu',
61
-									'/linux/i'              =>  'Linux',
62
-									'/blackberry/i'         =>  'BlackBerry',
63
-									'/webos/i'              =>  'Mobile'
64
-								);
65
-
66
-		/**
67
-		 * List of know browsers
68
-		 * @var array
69
-		 */
70
-	 	private $browsers = array(
71
-									'/mobile/i'     =>  'Handheld Browser',
72
-									'/msie/i'       =>  'Internet Explorer',
73
-									'/firefox/i'    =>  'Firefox',
74
-									'/chrome/i'     =>  'Chrome',
75
-									'/safari/i'     =>  'Safari',
76
-									'/edge/i'       =>  'Edge',
77
-									'/opera/i'      =>  'Opera',
78
-									'/netscape/i'   =>  'Netscape',
79
-									'/maxthon/i'    =>  'Maxthon',
80
-									'/konqueror/i'  =>  'Konqueror'
81
-								);
82
-
83
-	 	/**
84
-	 	 * Agent string
85
-	 	 * @var string
86
-	 	 */
87
-		private $agent = '';
88
-
89
-		/**
90
-		 * Browser name
91
-		 * @var string
92
-		 */
58
+                                    '/mac_powerpc/i'        =>  'Mac OS 9',
59
+                                    '/android/i'            =>  'Android',
60
+                                    '/ubuntu/i'             =>  'Ubuntu',
61
+                                    '/linux/i'              =>  'Linux',
62
+                                    '/blackberry/i'         =>  'BlackBerry',
63
+                                    '/webos/i'              =>  'Mobile'
64
+                                );
65
+
66
+        /**
67
+         * List of know browsers
68
+         * @var array
69
+         */
70
+            private $browsers = array(
71
+                                    '/mobile/i'     =>  'Handheld Browser',
72
+                                    '/msie/i'       =>  'Internet Explorer',
73
+                                    '/firefox/i'    =>  'Firefox',
74
+                                    '/chrome/i'     =>  'Chrome',
75
+                                    '/safari/i'     =>  'Safari',
76
+                                    '/edge/i'       =>  'Edge',
77
+                                    '/opera/i'      =>  'Opera',
78
+                                    '/netscape/i'   =>  'Netscape',
79
+                                    '/maxthon/i'    =>  'Maxthon',
80
+                                    '/konqueror/i'  =>  'Konqueror'
81
+                                );
82
+
83
+            /**
84
+             * Agent string
85
+             * @var string
86
+             */
87
+        private $agent = '';
88
+
89
+        /**
90
+         * Browser name
91
+         * @var string
92
+         */
93 93
         private $browserName = '';
94 94
 
95 95
         /**
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
          */
129 129
         private $isFacebook = false;
130 130
 
131
-		/**
131
+        /**
132 132
          * Class constructor
133 133
          */
134 134
         public function __construct($userAgent = '') {
@@ -231,12 +231,12 @@  discard block
 block discarded – undo
231 231
             return $this->isFacebook;
232 232
         }
233 233
 
234
-         /**
235
-         * Returns a formatted string with a summary of the details of the browser.
236
-         * @codeCoverageIgnore
237
-         * 
238
-         * @return string formatted string with a summary of the browser
239
-         */
234
+            /**
235
+             * Returns a formatted string with a summary of the details of the browser.
236
+             * @codeCoverageIgnore
237
+             * 
238
+             * @return string formatted string with a summary of the browser
239
+             */
240 240
         public function __toString() {
241 241
             return "<strong>Browser Name:</strong> {$this->getBrowser()}<br/>\n" .
242 242
                 "<strong>Browser Version:</strong> {$this->getVersion()}<br/>\n" .
@@ -248,70 +248,70 @@  discard block
 block discarded – undo
248 248
         /**
249 249
          * Determine the user's platform
250 250
          */
251
-		protected function checkPlatform() { 
252
-			foreach ($this->platforms as $regex => $value) { 
253
-				if (preg_match($regex, $this->agent) ) {
254
-					$this->platform = $value;
255
-					break;
256
-				}
257
-			}   
258
-		}
259
-
260
-		/**
251
+        protected function checkPlatform() { 
252
+            foreach ($this->platforms as $regex => $value) { 
253
+                if (preg_match($regex, $this->agent) ) {
254
+                    $this->platform = $value;
255
+                    break;
256
+                }
257
+            }   
258
+        }
259
+
260
+        /**
261 261
          * Routine to determine the browser type
262 262
          */
263
-		protected function checkBrowser() {
264
-			foreach ($this->browsers as $regex => $value) { 
265
-				if (preg_match($regex, $this->agent ) ) {
266
-					$this->browserName = $value;
267
-					break;
268
-				}
269
-			}
270
-		}
271
-
272
-		/**
263
+        protected function checkBrowser() {
264
+            foreach ($this->browsers as $regex => $value) { 
265
+                if (preg_match($regex, $this->agent ) ) {
266
+                    $this->browserName = $value;
267
+                    break;
268
+                }
269
+            }
270
+        }
271
+
272
+        /**
273 273
          * Routine to determine the browser version
274 274
          */
275
-		protected function checkBrowserVersion(){
276
-			$detected = $this->getBrowser();
277
-			$detect = array_search($detected, $this->browsers);
278
-			$browser = str_replace(array('/i','/'), '', $detect);
279
-			$regex = "/(?<browser>version|{$browser})[\/]+(?<version>[0-9.|a-zA-Z.]*)/i";
280
-			if (preg_match_all($regex, $this->agent, $matches)) {
281
-				$found = array_search($browser, $matches['browser']);
282
-				$this->version = $matches['version'][$found];
283
-			}
284
-		}
285
-
286
-		/**
275
+        protected function checkBrowserVersion(){
276
+            $detected = $this->getBrowser();
277
+            $detect = array_search($detected, $this->browsers);
278
+            $browser = str_replace(array('/i','/'), '', $detect);
279
+            $regex = "/(?<browser>version|{$browser})[\/]+(?<version>[0-9.|a-zA-Z.]*)/i";
280
+            if (preg_match_all($regex, $this->agent, $matches)) {
281
+                $found = array_search($browser, $matches['browser']);
282
+                $this->version = $matches['version'][$found];
283
+            }
284
+        }
285
+
286
+        /**
287 287
          * Determine if the browser is Mobile or not
288 288
          */
289
-		protected function checkMobile() {
290
-			if (preg_match('/(android|avantgo|blackberry|bolt|boost|cricket'
289
+        protected function checkMobile() {
290
+            if (preg_match('/(android|avantgo|blackberry|bolt|boost|cricket'
291 291
                 . '|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i', $this->agent) ) {
292
-				$this->isMobile = true;
293
-			}
294
-		}
292
+                $this->isMobile = true;
293
+            }
294
+        }
295 295
 
296
-		/**
296
+        /**
297 297
          * Determine if the browser is Tablet or not
298 298
          */
299
-		protected function checkTablet() {
300
-			if (preg_match('/tablet|ipad/i', $this->agent) ) {
301
-				$this->isTablet = true;
302
-			}
303
-		}
299
+        protected function checkTablet() {
300
+            if (preg_match('/tablet|ipad/i', $this->agent) ) {
301
+                $this->isTablet = true;
302
+            }
303
+        }
304 304
 
305
-		/**
305
+        /**
306 306
          * Determine if the browser is Robot or not
307 307
          */
308
-		protected function checkBot() {
309
-			if (preg_match('/bot/i', $this->agent) ) {
310
-				$this->isRobot = true;
311
-			}
312
-		}
308
+        protected function checkBot() {
309
+            if (preg_match('/bot/i', $this->agent) ) {
310
+                $this->isRobot = true;
311
+            }
312
+        }
313 313
 
314
-		/**
314
+        /**
315 315
          * Detect if URL is loaded from FacebookExternalHit
316 316
          */
317 317
         protected function checkFacebook() {
@@ -324,10 +324,10 @@  discard block
 block discarded – undo
324 324
         }
325 325
 
326 326
 
327
-		 /**
328
-         * Protected routine to calculate and determine what
329
-         *  the browser is in use (including platform)
330
-         */
327
+            /**
328
+             * Protected routine to calculate and determine what
329
+             *  the browser is in use (including platform)
330
+             */
331 331
         protected function determine() {
332 332
             $this->checkPlatform();
333 333
             $this->checkBrowser();
@@ -338,4 +338,4 @@  discard block
 block discarded – undo
338 338
             $this->checkFacebook();
339 339
         }
340 340
 		
341
-	}
341
+    }
Please login to merge, or discard this patch.
core/common.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 		
92 92
         //record the class instance
93 93
         $classes[$class] = isset($params) ? new $class($params) : new $class();
94
-		return $classes[$class];
94
+        return $classes[$class];
95 95
     }
96 96
 
97 97
     /**
@@ -179,17 +179,17 @@  discard block
 block discarded – undo
179 179
         die();
180 180
     }
181 181
 
182
-     /**
183
-     *  Function defined for PHP error message handling
184
-     *              
185
-     *  @param int $errno the type of error for example: E_USER_ERROR, E_USER_WARNING, etc.
186
-     *  @param string $errstr the error message
187
-     *  @param string $errfile the file where the error occurred
188
-     *  @param int $errline the line number where the error occurred
189
-     *  @codeCoverageIgnore
190
-     *  
191
-     *  @return boolean 
192
-     */
182
+        /**
183
+         *  Function defined for PHP error message handling
184
+         *              
185
+         *  @param int $errno the type of error for example: E_USER_ERROR, E_USER_WARNING, etc.
186
+         *  @param string $errstr the error message
187
+         *  @param string $errfile the file where the error occurred
188
+         *  @param int $errline the line number where the error occurred
189
+         *  @codeCoverageIgnore
190
+         *  
191
+         *  @return boolean 
192
+         */
193 193
     function fw_error_handler($errno, $errstr, $errfile, $errline) {
194 194
         $isError = (((E_ERROR | E_COMPILE_ERROR | E_CORE_ERROR | E_USER_ERROR) & $errno) === $errno);
195 195
         if ($isError) {
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
                 E_RECOVERABLE_ERROR  => 'Catchable Fatal Error'
213 213
         );
214 214
         if (isset($errorsType[$errno])) {
215
-           $errorType = $errorsType[$errno];
215
+            $errorType = $errorsType[$errno];
216 216
         }
217 217
         $errorText = 'An error is occurred in the file ' . $errfile . ' at line ' . $errline . ' raison : ' . $errstr;
218 218
         if ((error_reporting() & $errno) !== $errno) {
Please login to merge, or discard this patch.
core/libraries/Email.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
             $addresses = array();
396 396
             foreach ($pairs as $name => $email) {
397 397
                 if (is_numeric($name)) {
398
-                   $name = null;
398
+                    $name = null;
399 399
                 }
400 400
                 $addresses[] = $this->formatHeader($email, $name);
401 401
             }
@@ -837,10 +837,10 @@  discard block
 block discarded – undo
837 837
             return $headers;
838 838
         }
839 839
 
840
-         /**
841
-         * Get the attachment message for send or the simple message
842
-         * @return string
843
-         */
840
+            /**
841
+             * Get the attachment message for send or the simple message
842
+             * @return string
843
+             */
844 844
         protected function getMessageWithAttachmentForSend() {
845 845
             $message = $this->getWrapMessage();
846 846
             if ($this->hasAttachments()) {
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
          */
871 871
         protected function sendHelloCommand() {
872 872
             $responseCode = $this->sendCommand('EHLO ' . $this->getSmtpClientHostname())
873
-                                 ->getSmtpResponseCode();
873
+                                    ->getSmtpResponseCode();
874 874
             if ($responseCode !== 250) {
875 875
                 $this->error = $this->smtpResponse;
876 876
                 return false;
@@ -1017,7 +1017,7 @@  discard block
 block discarded – undo
1017 1017
             $message = $this->getMessageWithAttachmentForSend();
1018 1018
             $headers = $this->getHeadersForSend(); 
1019 1019
             $this->logger->info('Sending new mail using mail protocol, the information are listed below: '
1020
-                                  . 'destination: ' . $to . ', headers: ' . $headers . ', message: ' . $message);
1020
+                                    . 'destination: ' . $to . ', headers: ' . $headers . ', message: ' . $message);
1021 1021
             $result = mail($to, $this->subject, $message, $headers, $this->params);
1022 1022
             if (!$result) {
1023 1023
                 $this->error = 'Error when sending mail using mail protocol';
@@ -1025,10 +1025,10 @@  discard block
 block discarded – undo
1025 1025
             return $result;
1026 1026
         }
1027 1027
 
1028
-         /**
1029
-         * Send mail using "smtp" protocol
1030
-         * @return boolean
1031
-         */
1028
+            /**
1029
+             * Send mail using "smtp" protocol
1030
+             * @return boolean
1031
+             */
1032 1032
         protected function sendSmtp() {
1033 1033
             if (!$this->smtpConnection()) {
1034 1034
                 return false;
@@ -1038,7 +1038,7 @@  discard block
 block discarded – undo
1038 1038
             $message = $this->getMessageWithAttachmentForSend();
1039 1039
             $headers = $this->getHeadersForSend();
1040 1040
             $this->logger->info('Sending new mail using SMTP protocol, the information are listed below: '
1041
-                                  . 'destination: ' . $to . ', headers: ' . $headers . ', message: ' . $message);
1041
+                                    . 'destination: ' . $to . ', headers: ' . $headers . ', message: ' . $message);
1042 1042
             $recipients = array_merge($this->to, $this->cc, $this->bcc);
1043 1043
             $commands = array(
1044 1044
                                 'mail_from' => array('MAIL FROM: <' . $this->from . '>', 'MAIL_FROM', 250),
@@ -1089,17 +1089,17 @@  discard block
 block discarded – undo
1089 1089
         }
1090 1090
 
1091 1091
 
1092
-         /**
1093
-         * Return the client hostname for SMTP
1094
-         * 
1095
-         * There are only two legal types of hostname - either a fully
1096
-         * qualified domain name (eg: "mail.example.com") or an IP literal
1097
-         * (eg: "[1.2.3.4]").
1098
-         *
1099
-         * @link    https://tools.ietf.org/html/rfc5321#section-2.3.5
1100
-         * @link    http://cbl.abuseat.org/namingproblems.html
1101
-         * @return string
1102
-         */
1092
+            /**
1093
+             * Return the client hostname for SMTP
1094
+             * 
1095
+             * There are only two legal types of hostname - either a fully
1096
+             * qualified domain name (eg: "mail.example.com") or an IP literal
1097
+             * (eg: "[1.2.3.4]").
1098
+             *
1099
+             * @link    https://tools.ietf.org/html/rfc5321#section-2.3.5
1100
+             * @link    http://cbl.abuseat.org/namingproblems.html
1101
+             * @return string
1102
+             */
1103 1103
         protected function getSmtpClientHostname() {
1104 1104
             $globals = &class_loader('GlobalVar', 'classes');
1105 1105
             if ($globals->server('SERVER_NAME')) {
Please login to merge, or discard this patch.
core/classes/Lang.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
             if ($cookieLang && $this->isValid($cookieLang)) {
80 80
                 $this->current = $cookieLang;
81 81
                 $this->logger->info('Language from cookie [' . $cfgKey . '] is valid so '
82
-                                     .'we will set the language using the cookie value [' . $cookieLang . ']');
82
+                                        .'we will set the language using the cookie value [' . $cookieLang . ']');
83 83
             } else {
84 84
                 $this->logger->info('Language from cookie [' . $cfgKey . '] is not set, use the default value [' . $this->getDefault() . ']');
85 85
                 $this->current = $this->getDefault();
Please login to merge, or discard this patch.
core/classes/Loader.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             $moduleConfigPath = get_instance()->module->findConfigFullPath($filename, $module);
220 220
             if ($moduleConfigPath) {
221 221
                 $this->logger->info('Found config [' . $filename . '] from module [' . $module . '], '
222
-                                  . 'the file path is [' . $moduleConfigPath . '] we will used it');
222
+                                    . 'the file path is [' . $moduleConfigPath . '] we will used it');
223 223
                 $configFilePath = $moduleConfigPath;
224 224
             } else {
225 225
                 $this->logger->info('Cannot find config [' . $filename . '] from modules using the default location');
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
             $moduleLibraryPath = get_instance()->module->findLibraryFullPath($class, $module);
480 480
             if ($moduleLibraryPath) {
481 481
                 $this->logger->info('Found library [' . $class . '] from module [' . $module . '], the '
482
-                                   . 'file path is [' . $moduleLibraryPath . '] we will used it');
482
+                                    . 'file path is [' . $moduleLibraryPath . '] we will used it');
483 483
                 $libraryFilePath = $moduleLibraryPath;
484 484
             } else {
485 485
                 $this->logger->info('Cannot find library [' . $class . '] from modules using the default location');
Please login to merge, or discard this patch.
core/classes/model/DBSessionHandlerModel.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
      */
30 30
 	
31 31
     /**
32
-    * DB session handler model class
33
-    */
32
+     * DB session handler model class
33
+     */
34 34
     abstract class DBSessionHandlerModel extends Model {
35 35
 		
36 36
         /**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
          *
41 41
          * @example
42 42
          * 	array(
43
-	 *	      'sid' => '', //VARCHAR(100) Note: this a primary key
44
-	 *	      'sdata' => '', //TEXT
45
-	 *	      'stime' => '', //unix timestamp (INT|BIGINT)
46
-	 *	      'shost' => '', //VARCHAR(255)
47
-	 *	      'sip' => '', //VARCHAR(128) 
48
-	 *	      'sbrowser' => '', //VARCHAR(255) 
49
-	 *	      'skey' => '' //VARCHAR(255) 
50
-	 *	);
43
+         *	      'sid' => '', //VARCHAR(100) Note: this a primary key
44
+         *	      'sdata' => '', //TEXT
45
+         *	      'stime' => '', //unix timestamp (INT|BIGINT)
46
+         *	      'shost' => '', //VARCHAR(255)
47
+         *	      'sip' => '', //VARCHAR(128) 
48
+         *	      'sbrowser' => '', //VARCHAR(255) 
49
+         *	      'skey' => '' //VARCHAR(255) 
50
+         *	);
51 51
          */
52 52
         protected $sessionTableColumns = array();
53 53
 
Please login to merge, or discard this patch.