@@ -18,7 +18,7 @@ |
||
18 | 18 | * Copyright 2016-18 Hannes Forsgård |
19 | 19 | */ |
20 | 20 | |
21 | -declare(strict_types = 1); |
|
21 | +declare(strict_types=1); |
|
22 | 22 | |
23 | 23 | namespace byrokrat\giroapp\Plugin; |
24 | 24 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * Copyright 2016-18 Hannes Forsgård |
19 | 19 | */ |
20 | 20 | |
21 | -declare(strict_types = 1); |
|
21 | +declare(strict_types=1); |
|
22 | 22 | |
23 | 23 | namespace byrokrat\giroapp\Xml; |
24 | 24 | |
@@ -92,22 +92,22 @@ discard block |
||
92 | 92 | |
93 | 93 | switch ($value) { |
94 | 94 | case XmlFormInterface::PHONE: |
95 | - $map[$key] = function ($donorBuilder, $value) { |
|
95 | + $map[$key] = function($donorBuilder, $value) { |
|
96 | 96 | $donorBuilder->setPhone($value); |
97 | 97 | }; |
98 | 98 | break; |
99 | 99 | case XmlFormInterface::EMAIL: |
100 | - $map[$key] = function ($donorBuilder, $value) { |
|
100 | + $map[$key] = function($donorBuilder, $value) { |
|
101 | 101 | $donorBuilder->setEmail($value); |
102 | 102 | }; |
103 | 103 | break; |
104 | 104 | case XmlFormInterface::DONATION_AMOUNT: |
105 | - $map[$key] = function ($donorBuilder, $value) { |
|
105 | + $map[$key] = function($donorBuilder, $value) { |
|
106 | 106 | $donorBuilder->setDonationAmount(new SEK($value)); |
107 | 107 | }; |
108 | 108 | break; |
109 | 109 | case XmlFormInterface::COMMENT: |
110 | - $map[$key] = function ($donorBuilder, $value) { |
|
110 | + $map[$key] = function($donorBuilder, $value) { |
|
111 | 111 | $donorBuilder->setComment($value); |
112 | 112 | }; |
113 | 113 | break; |
@@ -18,7 +18,7 @@ |
||
18 | 18 | * Copyright 2016-18 Hannes Forsgård |
19 | 19 | */ |
20 | 20 | |
21 | -declare(strict_types = 1); |
|
21 | +declare(strict_types=1); |
|
22 | 22 | |
23 | 23 | namespace byrokrat\giroapp\Plugin; |
24 | 24 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | * Copyright 2016-18 Hannes Forsgård |
19 | 19 | */ |
20 | 20 | |
21 | -declare(strict_types = 1); |
|
21 | +declare(strict_types=1); |
|
22 | 22 | |
23 | 23 | namespace byrokrat\giroapp\Plugin; |
24 | 24 |