Completed
Pull Request — master (#32)
by
unknown
04:06
created
src/Constraint/Type.php 1 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 Linio\Component\Input\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/Constraint/Enum.php 1 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 Linio\Component\Input\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/Constraint/StringSize.php 1 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 Linio\Component\Input\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/Constraint/UuidValue.php 1 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 Linio\Component\Input\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/Constraint/DateTime.php 1 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 Linio\Component\Input\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/Node/CollectionNode.php 1 patch
Spacing   +2 added lines, -2 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 Linio\Component\Input\Node;
6 6
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         }
32 32
 
33 33
         foreach ($input as $inputItem) {
34
-            if (! is_array($inputItem)) {
34
+            if (!is_array($inputItem)) {
35 35
                 throw new InvalidConstraintException(sprintf('Value does not match type collection'));
36 36
             }
37 37
 
Please login to merge, or discard this patch.