Completed
Push — master ( 207ea5...b82e1f )
by Torsten
03:18
created
bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$loader = require __DIR__ . '/vendor/autoload.php';
3
+$loader = require __DIR__.'/vendor/autoload.php';
Please login to merge, or discard this patch.
src/Lej/Component/Infrastructure/Serialization/IdSubscribingHandler.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 Lej\Component\Infrastructure\Serialization;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Component/Domain/Model/Entity.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 Lej\Component\Domain\Model;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Component/Domain/Model/ValueObject.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 Lej\Component\Domain\Model;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Component/Domain/Model/Id.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 Lej\Component\Domain\Model;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Component/Domain/Model/DomainEventSubscriber.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 Lej\Component\Domain\Model;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Component/Domain/Model/DomainEvent.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 Lej\Component\Domain\Model;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Component/Domain/Model/DomainEventPublisher.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 Lej\Component\Domain\Model;
6 6
 
Please login to merge, or discard this patch.
src/Lej/Command/CreateStringIdCommand.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 Lej\Command;
6 6
 
@@ -41,6 +41,6 @@  discard block
 block discarded – undo
41 41
             'idClassName' => $idClassName
42 42
         ]);
43 43
 
44
-        file_put_contents($path . '/' . $idClassName . '.php', $id);
44
+        file_put_contents($path.'/'.$idClassName.'.php', $id);
45 45
     }
46 46
 }
Please login to merge, or discard this patch.