Passed
Pull Request — master (#1)
by Oleksandr
07:18
created
src/SprykerEco/Zed/Computop/Business/Hook/ComputopPostSaveHook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
         $paymentSelection = $quoteTransfer->getPayment()->getPaymentSelection();
114 114
 
115 115
         $paymentMethod = ucfirst($paymentSelection);
116
-        $method = 'get' . $paymentMethod;
116
+        $method = 'get'.$paymentMethod;
117 117
         $paymentTransfer = $quoteTransfer->getPayment();
118 118
 
119 119
         if (!method_exists($paymentTransfer, $method) || ($quoteTransfer->getPayment()->$method() === null)) {
Please login to merge, or discard this patch.
src/SprykerEco/Zed/Computop/Business/Order/OrderManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
         $this->computopTransfer = $this->activeMapper->getComputopTransfer($quoteTransfer->getPayment());
101 101
         $this->computopResponseTransfer = $this->activeMapper->getComputopResponseTransfer($quoteTransfer->getPayment());
102 102
 
103
-        $this->handleDatabaseTransaction(function () use ($quoteTransfer, $checkoutResponseTransfer) {
103
+        $this->handleDatabaseTransaction(function() use ($quoteTransfer, $checkoutResponseTransfer) {
104 104
 
105 105
             $paymentEntity = $this->savePaymentForOrder(
106 106
                 $quoteTransfer->getPayment(),
Please login to merge, or discard this patch.
src/SprykerEco/Client/Computop/ComputopDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     protected function addZedRequestClient(Container $container)
35 35
     {
36
-        $container[static::CLIENT_ZED_REQUEST] = function (Container $container) {
36
+        $container[static::CLIENT_ZED_REQUEST] = function(Container $container) {
37 37
             return $container->getLocator()->zedRequest()->client();
38 38
         };
39 39
 
Please login to merge, or discard this patch.
src/SprykerEco/Client/Computop/ComputopClient.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function logResponse(ComputopApiResponseHeaderTransfer $responseTransfer)
29 29
     {
30
-         $this->getFactory()->createZedStub()->logResponse($responseTransfer);
30
+            $this->getFactory()->createZedStub()->logResponse($responseTransfer);
31 31
     }
32 32
 
33 33
     /**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function saveSofortInitResponse(QuoteTransfer $quoteTransfer)
43 43
     {
44
-         return $this->getFactory()->createZedStub()->saveSofortInitResponse($quoteTransfer);
44
+            return $this->getFactory()->createZedStub()->saveSofortInitResponse($quoteTransfer);
45 45
     }
46 46
 
47 47
     /**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function saveIdealInitResponse(QuoteTransfer $quoteTransfer)
57 57
     {
58
-         return $this->getFactory()->createZedStub()->saveIdealInitResponse($quoteTransfer);
58
+            return $this->getFactory()->createZedStub()->saveIdealInitResponse($quoteTransfer);
59 59
     }
60 60
 
61 61
     /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function savePaydirektInitResponse(QuoteTransfer $quoteTransfer)
71 71
     {
72
-         return $this->getFactory()->createZedStub()->savePaydirektInitResponse($quoteTransfer);
72
+            return $this->getFactory()->createZedStub()->savePaydirektInitResponse($quoteTransfer);
73 73
     }
74 74
 
75 75
     /**
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function easyCreditStatusApiCall(QuoteTransfer $quoteTransfer)
155 155
     {
156
-         return $this->getFactory()->createZedStub()->easyCreditStatusApiCall($quoteTransfer);
156
+            return $this->getFactory()->createZedStub()->easyCreditStatusApiCall($quoteTransfer);
157 157
     }
158 158
 
159 159
     /**
Please login to merge, or discard this patch.
src/SprykerEco/Yves/Computop/Form/SofortSubForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getTemplatePath()
39 39
     {
40
-        return ComputopConfig::PROVIDER_NAME . '/' . self::PAYMENT_METHOD;
40
+        return ComputopConfig::PROVIDER_NAME.'/'.self::PAYMENT_METHOD;
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
src/SprykerEco/Yves/Computop/Form/CreditCardSubForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getTemplatePath()
39 39
     {
40
-        return ComputopConfig::PROVIDER_NAME . '/' . self::PAYMENT_METHOD;
40
+        return ComputopConfig::PROVIDER_NAME.'/'.self::PAYMENT_METHOD;
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
src/SprykerEco/Yves/Computop/Form/EasyCreditSubForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getTemplatePath()
39 39
     {
40
-        return ComputopConfig::PROVIDER_NAME . '/' . self::PAYMENT_METHOD;
40
+        return ComputopConfig::PROVIDER_NAME.'/'.self::PAYMENT_METHOD;
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
src/SprykerEco/Yves/Computop/Form/PayNowSubForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getTemplatePath()
39 39
     {
40
-        return ComputopConfig::PROVIDER_NAME . '/' . self::PAYMENT_METHOD;
40
+        return ComputopConfig::PROVIDER_NAME.'/'.self::PAYMENT_METHOD;
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
src/SprykerEco/Yves/Computop/Form/PayPalSubForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getTemplatePath()
39 39
     {
40
-        return ComputopConfig::PROVIDER_NAME . '/' . self::PAYMENT_METHOD;
40
+        return ComputopConfig::PROVIDER_NAME.'/'.self::PAYMENT_METHOD;
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.