Completed
Push — master ( 0e8f56...28a10f )
by Alexpts
02:22
created
src/PTS/Validator/Validators/BetweenIntValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 {
6 6
     public function __invoke($value, int $min, int $max): bool
7 7
     {
8
-       return  $value <= $max && $value >= $min;
8
+        return  $value <= $max && $value >= $min;
9 9
     }
10 10
 }
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/BoolValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 {
6 6
     public function __invoke($value): bool
7 7
     {
8
-       return filter_var($value, \FILTER_VALIDATE_BOOLEAN);
8
+        return filter_var($value, \FILTER_VALIDATE_BOOLEAN);
9 9
     }
10 10
 }
11 11
\ No newline at end of file
Please login to merge, or discard this patch.