Completed
Push — master ( 83639c...e6b957 )
by Alexpts
01:54
created
src/PTS/Validator/Validators/RequiredValidator.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     public function __invoke($value): bool
9 9
     {
10 10
         if ($value === null) {
11
-           return false;
11
+            return false;
12 12
         }
13 13
 
14 14
         if (is_string($value) && trim($value) === '') {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.