@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | protected function addStore(Container $container) |
63 | 63 | { |
64 | - $container[static::STORE] = function () { |
|
64 | + $container[static::STORE] = function() { |
|
65 | 65 | return $this->getStore(); |
66 | 66 | }; |
67 | 67 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | protected function addCurrencyFacade(Container $container) |
85 | 85 | { |
86 | - $container[static::FACADE_CURRENCY] = function (Container $container) { |
|
86 | + $container[static::FACADE_CURRENCY] = function(Container $container) { |
|
87 | 87 | return new MoneyToCurrencyBridge($container->getLocator()->currency()->facade()); |
88 | 88 | }; |
89 | 89 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | */ |
98 | 98 | protected function addMoneyParser(Container $container) |
99 | 99 | { |
100 | - $container[static::MONEY_PARSER] = function () { |
|
100 | + $container[static::MONEY_PARSER] = function() { |
|
101 | 101 | $moneyToParserBridge = new MoneyToParserBridge($this->getIntlMoneyParser()); |
102 | 102 | |
103 | 103 | return $moneyToParserBridge; |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | protected function addStoreFacade(Container $container) |
150 | 150 | { |
151 | - $container[static::FACADE_STORE] = function (Container $container) { |
|
151 | + $container[static::FACADE_STORE] = function(Container $container) { |
|
152 | 152 | return new MoneyToStoreBridge($container->getLocator()->store()->facade()); |
153 | 153 | }; |
154 | 154 |
@@ -139,7 +139,7 @@ |
||
139 | 139 | ->expects($this->any()) |
140 | 140 | ->method('getByIdCurrency') |
141 | 141 | ->willReturnCallback( |
142 | - function ($idCurrency) { |
|
142 | + function($idCurrency) { |
|
143 | 143 | return (new CurrencyTransfer())->setIdCurrency($idCurrency); |
144 | 144 | } |
145 | 145 | ); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | protected function addSynchronizationSearchKeyPlugins(Container $container) |
36 | 36 | { |
37 | - $container[self::SYNCHRONIZATION_SEARCH_KEY_GENERATOR_PLUGINS] = function (Container $container) { |
|
37 | + $container[self::SYNCHRONIZATION_SEARCH_KEY_GENERATOR_PLUGINS] = function(Container $container) { |
|
38 | 38 | return $this->getSearchKeyGeneratorPlugins($container); |
39 | 39 | }; |
40 | 40 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | protected function addSynchronizationStorageKeyPlugins(Container $container) |
50 | 50 | { |
51 | - $container[self::SYNCHRONIZATION_STORAGE_KEY_GENERATOR_PLUGINS] = function (Container $container) { |
|
51 | + $container[self::SYNCHRONIZATION_STORAGE_KEY_GENERATOR_PLUGINS] = function(Container $container) { |
|
52 | 52 | return $this->getStorageKeyGeneratorPlugins($container); |
53 | 53 | }; |
54 | 54 |
@@ -169,7 +169,7 @@ |
||
169 | 169 | 'config', |
170 | 170 | ]; |
171 | 171 | |
172 | - $callable = function ($a, $b) use ($map) { |
|
172 | + $callable = function($a, $b) use ($map) { |
|
173 | 173 | $keyA = in_array($a, $map) ? array_search($a, $map) : 999; |
174 | 174 | $keyB = in_array($b, $map) ? array_search($b, $map) : 999; |
175 | 175 |
@@ -366,7 +366,7 @@ |
||
366 | 366 | |
367 | 367 | $utilEncodingMock |
368 | 368 | ->method('decodeJson') |
369 | - ->willReturnCallback(function ($json, $assoc) { |
|
369 | + ->willReturnCallback(function($json, $assoc) { |
|
370 | 370 | return json_decode($json, $assoc); |
371 | 371 | }); |
372 | 372 |
@@ -170,7 +170,7 @@ |
||
170 | 170 | */ |
171 | 171 | protected function getStorePrefixes(array $stores) |
172 | 172 | { |
173 | - array_walk($stores, function (&$store) { |
|
173 | + array_walk($stores, function(&$store) { |
|
174 | 174 | $store = mb_strtolower($store) . '_'; |
175 | 175 | }); |
176 | 176 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | use _generated\UtilDateTimeServiceTesterActions; |
24 | 24 | |
25 | - /** |
|
26 | - * Define custom actions here |
|
27 | - */ |
|
25 | + /** |
|
26 | + * Define custom actions here |
|
27 | + */ |
|
28 | 28 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | use _generated\ApplicationBusinessTesterActions; |
24 | 24 | |
25 | - /** |
|
26 | - * Define custom actions here |
|
27 | - */ |
|
25 | + /** |
|
26 | + * Define custom actions here |
|
27 | + */ |
|
28 | 28 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | use _generated\ApplicationSharedTesterActions; |
24 | 24 | |
25 | - /** |
|
26 | - * Define custom actions here |
|
27 | - */ |
|
25 | + /** |
|
26 | + * Define custom actions here |
|
27 | + */ |
|
28 | 28 | } |