Test Failed
Push — 1.0.0-dev ( 970760...fdf7af )
by nguereza
02:47
created
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.