Completed
Push — master ( 3d2c70...8c69d0 )
by Tomasz
02:38
created
src/ProgressiveBoard/Board.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 Aggrego\Domain\ProgressiveBoard;
6 6
 
Please login to merge, or discard this patch.
src/ProgressiveBoard/Events/BoardDeletedEvent.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 Aggrego\Domain\ProgressiveBoard\Events;
6 6
 
Please login to merge, or discard this patch.
src/ProgressiveBoard/Step/Steps/FinalStep.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 Aggrego\Domain\ProgressiveBoard\Step\Steps;
6 6
 
Please login to merge, or discard this patch.
src/ProgressiveBoard/Step/Step.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 Aggrego\Domain\ProgressiveBoard\Step;
6 6
 
Please login to merge, or discard this patch.
src/ProgressiveBoard/Shard/FinalItem.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 Aggrego\Domain\ProgressiveBoard\Shard;
6 6
 
Please login to merge, or discard this patch.
src/ProgressiveBoard/Exception/BoardExistException.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 Aggrego\Domain\ProgressiveBoard\Exception;
6 6
 
Please login to merge, or discard this patch.
spec-old/Api/Command/CreateBoard/UseCaseSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         /** @var Key $key */
39 39
         $key = Argument::type(Key::class);
40 40
         $boardFactory->factory($key, $profile)->will(
41
-            function (array $data) {
41
+            function(array $data) {
42 42
                 $key = $data[0];
43 43
                 /** @var Profile $profile */
44 44
                 $profile = $data[1];
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $keySpecificationFactory = new ProfileKeySpecificationFactory([$specification->getWrappedObject()]);
83 83
 
84 84
         $boardFactory->factory($key, $profile)->will(
85
-            function (array $data) {
85
+            function(array $data) {
86 86
                 $key = $data[0];
87 87
                 /** @var Profile $profile */
88 88
                 $profile = $data[1];
Please login to merge, or discard this patch.
Profile/BoardTransformation/Exception/TransformationNotFoundException.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 Aggrego\Domain\Profile\BoardTransformation\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Profile/BoardConstruction/Factory.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 Aggrego\Domain\Profile\BoardConstruction;
6 6
 
Please login to merge, or discard this patch.