Completed
Push — master ( ce2172...f53837 )
by Tomasz
02:50
created
src/Validator/Validator/DateTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Validator;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Validator/RuleValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Validator;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Validator/NotEmpty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Validator;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Validator/Uuid.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Validator;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Validator/IsValidTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Validator;
6 6
 
Please login to merge, or discard this patch.
src/Validator/StdFilter.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator;
6 6
 
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
             }
54 54
 
55 55
             $filtered[$fieldName] = $field->isArray() ?
56
-                $this->filterArray($field, $data[$fieldName]) :
57
-                $this->filterSingle($field, $data[$fieldName]);
56
+                $this->filterArray($field, $data[$fieldName]) : $this->filterSingle($field, $data[$fieldName]);
58 57
         }
59 58
         return $filtered;
60 59
     }
Please login to merge, or discard this patch.
src/Validator/Message/FieldMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Message;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Filter/ToLower.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Hop\Validator\Filter;
6 6
 
Please login to merge, or discard this patch.