Completed
Branch master (7fd249)
by Marco
04:01
created
Category
src/DataStructure/Just.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/DataStructure/Maybe.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/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/DataStructure/Nothing.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/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/Proxy.php 1 patch
Spacing   +3 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 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;
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $inner = $this->inner;
35 35
 
36 36
         $proxyFactory = new LazyLoadingValueHolderFactory();
37
-        $initializer = function (
37
+        $initializer = function(
38 38
             & $wrappedObject,
39 39
             LazyLoadingInterface $proxy
40 40
         ) use ($container, $inner, $name) {
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/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.