Completed
Push — master ( c30481...9edbca )
by Marco
01:21
created
src/Factory/ClassNameFactory.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 Fundic\Factory;
6 6
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     private $className;
15 15
 
16
-    public function __construct(?string $className = null)
16
+    public function __construct(? string $className = null)
17 17
     {
18 18
         $this->className = $className;
19 19
     }
Please login to merge, or discard this patch.
src/Factory/CallableFactory.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 Fundic\Factory;
6 6
 
Please login to merge, or discard this patch.
src/Factory/Decorator/Memoize.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 Fundic\Factory\Decorator;
6 6
 
Please login to merge, or discard this patch.
src/Container.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 Fundic;
6 6
 
Please login to merge, or discard this patch.
src/DataStructure/Dictionary.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 Fundic\DataStructure;
6 6
 
Please login to merge, or discard this patch.
src/Factory/ConstantFactory.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 Fundic\Factory;
6 6
 
Please login to merge, or discard this patch.
src/Factory/ValueFactory.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 Fundic\Factory;
6 6
 
Please login to merge, or discard this patch.
src/Factory/Decorator/Proxy.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 Fundic\Factory\Decorator;
6 6
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function __construct(
25 25
         ValueFactory $inner,
26
-        ?string $className = null
26
+        ? string $className = null
27 27
     ) {
28 28
         $this->inner = $inner;
29 29
         $this->className = $className;
Please login to merge, or discard this patch.
src/DataStructure/Result/Exception.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 Fundic\DataStructure\Result;
6 6
 
Please login to merge, or discard this patch.