Completed
Push — master ( fefeeb...b07390 )
by Andres
03:16 queued 01:04
created
src/Validator/NumberValidator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
     public function min($min)
22 22
     {
23 23
         return $this->add(function($value, $nameKey) use ($min) {
24
-           if ($value < $min) {
25
-               return $this->createError('number.min', $value, $nameKey);
26
-           }
24
+            if ($value < $min) {
25
+                return $this->createError('number.min', $value, $nameKey);
26
+            }
27 27
         });
28 28
     }
29 29
 
Please login to merge, or discard this patch.