Completed
Push — master ( 39d24c...8e5f5b )
by Klaus
07:17
created
src/Node/IntNode.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\Node;
5 5
 
Please login to merge, or discard this patch.
src/Node/BaseNode.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\Node;
5 5
 
Please login to merge, or discard this patch.
src/InputHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Linio\Component\Input;
5 5
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function __construct(TypeHandler $typeHandler = null)
31 31
     {
32 32
         $this->root = new BaseNode();
33
-        $this->typeHandler = $typeHandler ?? new TypeHandler();
33
+        $this->typeHandler = $typeHandler ? ? new TypeHandler();
34 34
         $this->root->setTypeHandler($this->typeHandler);
35 35
     }
36 36
 
Please login to merge, or discard this patch.
src/Constraint/Constraint.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/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/NotNull.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/DateRange.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/Url.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/Email.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.