Passed
Push — master ( 6c3849...8a2f40 )
by Hannes
02:09
created
src/CommandBus/ImportAutogiroFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\CommandBus;
24 24
 
Please login to merge, or discard this patch.
src/CommandBus/ImportXmlFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\CommandBus;
24 24
 
Please login to merge, or discard this patch.
src/CommandBus/Helper/LoggingMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\CommandBus\Helper;
24 24
 
Please login to merge, or discard this patch.
src/Utils/ClassIdExtractor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $this->id = rtrim(
38 38
             (string)preg_replace_callback(
39 39
                 '/[A-Z][a-z]+/',
40
-                function (array $matches) {
40
+                function(array $matches) {
41 41
                     return strtoupper($matches[0]) . '_';
42 42
                 },
43 43
                 (new \ReflectionClass($obj))->getShortName()
Please login to merge, or discard this patch.
src/Domain/Donor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Domain;
24 24
 
Please login to merge, or discard this patch.
src/Domain/DonorCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Domain;
24 24
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         }
46 46
 
47 47
         if (is_iterable($donors)) {
48
-            $this->factory = function () use ($donors) {
48
+            $this->factory = function() use ($donors) {
49 49
                 foreach ($donors as $donor) {
50 50
                     yield $donor;
51 51
                 }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     public function filter(FilterInterface $filter): DonorCollection
68 68
     {
69
-        return new DonorCollection(function () use ($filter) {
69
+        return new DonorCollection(function() use ($filter) {
70 70
             foreach ($this->getIterator() as $donor) {
71 71
                 if ($filter->filterDonor($donor)) {
72 72
                     yield $donor;
Please login to merge, or discard this patch.
src/Domain/State/StateCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Domain\State;
24 24
 
Please login to merge, or discard this patch.
src/Autogiro/AutogiroWriterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Autogiro;
24 24
 
Please login to merge, or discard this patch.
src/Event/Listener/DonorStateListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Event\Listener;
24 24
 
Please login to merge, or discard this patch.