@@ -40,7 +40,7 @@ |
||
40 | 40 | */ |
41 | 41 | protected function removeRedundantParams(array $data): array |
42 | 42 | { |
43 | - $data = array_filter($data, function ($item) { |
|
43 | + $data = array_filter($data, function($item) { |
|
44 | 44 | if ($item instanceof ArrayObject) { |
45 | 45 | return $item->count() !== 0; |
46 | 46 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | protected function addUtilEncodingService(Container $container): Container |
40 | 40 | { |
41 | - $container->set(static::SERVICE_UTIL_ENCODING, function (Container $container) { |
|
41 | + $container->set(static::SERVICE_UTIL_ENCODING, function(Container $container) { |
|
42 | 42 | return new AdyenApiToUtilEncodingServiceBridge($container->getLocator()->utilEncoding()->service()); |
43 | 43 | }); |
44 | 44 |