Completed
Push — master ( ce2172...f53837 )
by Tomasz
02:50
created
src/Validator/StdValidator.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
 
@@ -85,8 +85,7 @@  discard block
 block discarded – undo
85 85
             $messages->attachMessage(
86 86
                 $field->fieldName(),
87 87
                 $field->isArray() ?
88
-                    $this->processArrayField($field, $data[$field->fieldName()]) :
89
-                    $this->processSingleField(@$data[$field->fieldName()], $field)
88
+                    $this->processArrayField($field, $data[$field->fieldName()]) : $this->processSingleField(@$data[$field->fieldName()], $field)
90 89
             );
91 90
         }
92 91
         return $messages;
Please login to merge, or discard this patch.
src/Validator/Strategy/Field.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\Strategy;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Strategy/FieldInterface.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\Strategy;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Strategy/StructureField.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\Strategy;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Validator.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;
6 6
 
Please login to merge, or discard this patch.
src/Validator/Validator/Length.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/Email.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/Range.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/Nip.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.