@@ -18,7 +18,7 @@ discard block |
||
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 |
||
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 |
||
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 | ) |
@@ -18,7 +18,7 @@ |
||
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\Listener; |
24 | 24 |