Passed
Pull Request — master (#15)
by Ivan
07:35
created
src/SprykerEco/Client/Heidelpay/HeidelpayDependencyProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,15 +28,15 @@
 block discarded – undo
28 28
      */
29 29
     public function provideServiceLayerDependencies(Container $container): Container
30 30
     {
31
-        $container[static::CLIENT_LOCALE] = function (Container $container) {
31
+        $container[static::CLIENT_LOCALE] = function(Container $container) {
32 32
             return new HeidelpayToLocaleBridge($container->getLocator()->locale()->client());
33 33
         };
34 34
 
35
-        $container[static::CLIENT_QUOTE] = function (Container $container) {
35
+        $container[static::CLIENT_QUOTE] = function(Container $container) {
36 36
             return new HeidelpayToQuoteBridge($container->getLocator()->quote()->client());
37 37
         };
38 38
 
39
-        $container[static::CLIENT_ZED_REQUEST] = function (Container $container) {
39
+        $container[static::CLIENT_ZED_REQUEST] = function(Container $container) {
40 40
             return $container->getLocator()->zedRequest()->client();
41 41
         };
42 42
 
Please login to merge, or discard this patch.
src/SprykerEco/Client/Heidelpay/HeidelpayClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
      */
168 168
     public function filterResponseParameters(array $responseArray): array
169 169
     {
170
-        return array_filter($responseArray, function ($key) {
170
+        return array_filter($responseArray, function($key) {
171 171
             return !preg_match('/^paymentForm+|^lang+/', $key);
172 172
         }, ARRAY_FILTER_USE_KEY);
173 173
     }
Please login to merge, or discard this patch.