@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | protected function getComputopPaymentTransfer(QuoteTransfer $quoteTransfer, $paymentSelection) |
93 | 93 | { |
94 | 94 | $paymentMethod = ucfirst($paymentSelection); |
95 | - $method = 'get' . $paymentMethod; |
|
95 | + $method = 'get'.$paymentMethod; |
|
96 | 96 | $paymentTransfer = $quoteTransfer->getPayment(); |
97 | 97 | |
98 | 98 | if (!method_exists($paymentTransfer, $method) || ($quoteTransfer->getPayment()->$method() === null)) { |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | protected function setComputopPaymentToQuote(QuoteTransfer $quoteTransfer, $paymentSelection, AbstractTransfer $computopPaymentTransfer) |
116 | 116 | { |
117 | 117 | $paymentMethod = ucfirst($paymentSelection); |
118 | - $method = 'set' . $paymentMethod; |
|
118 | + $method = 'set'.$paymentMethod; |
|
119 | 119 | $paymentTransfer = $quoteTransfer->getPayment(); |
120 | 120 | |
121 | 121 | if (!method_exists($paymentTransfer, $method) || ($quoteTransfer->getPayment()->$method() === null)) { |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -37,7 +37,7 @@ |
||
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 | /** |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | public function save(TransferInterface $responseTransfer, OrderTransfer $orderTransfer) |
28 | 28 | { |
29 | - $this->handleDatabaseTransaction(function () use ($responseTransfer, $orderTransfer) { |
|
29 | + $this->handleDatabaseTransaction(function() use ($responseTransfer, $orderTransfer) { |
|
30 | 30 | $this->saveComputopDetails($responseTransfer, $orderTransfer); |
31 | 31 | }); |
32 | 32 |