Passed
Push — master ( 298e9b...ad6831 )
by Hannes
02:30
created
src/Formatter/MailStringFormatter.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Formatter;
24 24
 
Please login to merge, or discard this patch.
src/Config/DefaultsReader.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Config;
24 24
 
Please login to merge, or discard this patch.
src/Domain/State/MandateCreated.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-20 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/Console/Helper/InputReader.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Console\Helper;
24 24
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $value = (string)$this->questionHelper->ask(
72 72
             $this->input,
73 73
             $this->output,
74
-            $question->setValidator(function ($answer) use ($key, $validator) {
74
+            $question->setValidator(function($answer) use ($key, $validator) {
75 75
                 return $validator->validate($key, (string)$answer);
76 76
             })
77 77
         );
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $value = (string)$this->questionHelper->ask(
107 107
             $this->input,
108 108
             $this->output,
109
-            (new Question("New $key: "))->setValidator(function ($answer) use ($key, $validator) {
109
+            (new Question("New $key: "))->setValidator(function($answer) use ($key, $validator) {
110 110
                 return $validator->validate($key, (string)$answer);
111 111
             })
112 112
         );
Please login to merge, or discard this patch.
src/Console/DeleteAttributeConsole.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Console;
24 24
 
Please login to merge, or discard this patch.
src/Event/DonorAttributeRemoved.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-20 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;
24 24
 
Please login to merge, or discard this patch.
src/CommandBus/RemoveAttribute.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-20 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/RemoveAttributeHandler.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-20 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/Console/ImportXmlMandateConsole.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\giroapp\Console;
24 24
 
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
             $xmlMandate->donorId->format('CS-sk'),
124 124
             new Validator\ValidatorCollection(
125 125
                 new Validator\IdValidator,
126
-                new Validator\CallbackValidator(function (string $value) use (&$xmlMandate) {
126
+                new Validator\CallbackValidator(function(string $value) use (&$xmlMandate) {
127 127
                     $xmlMandate->donorId = $this->idFactory->createId($value);
128 128
                 })
129 129
             )
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             $xmlMandate->account->prettyprint(),
141 141
             new Validator\ValidatorCollection(
142 142
                 new Validator\AccountValidator,
143
-                new Validator\CallbackValidator(function (string $value) use (&$xmlMandate) {
143
+                new Validator\CallbackValidator(function(string $value) use (&$xmlMandate) {
144 144
                     $xmlMandate->account = $this->accountFactory->createAccount($value);
145 145
                 })
146 146
             )
Please login to merge, or discard this patch.