Completed
Push — master ( 3a5842...38b268 )
by Oleksandr
13s queued 11s
created
Request/Payment/Handler/Transaction/InstallmentConfigurationTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $request = $this->getMethodMapper($paymentMethodName)
32 32
             ->configurationRequest($quoteTransfer);
33 33
 
34
-        $response = $this->sendRequest((string)$request);
34
+        $response = $this->sendRequest((string) $request);
35 35
         $this->logInfo($request, $response, $paymentMethodName);
36 36
 
37 37
         return $this->converterFactory
Please login to merge, or discard this patch.
Business/Request/Payment/Handler/Transaction/RefundPaymentTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             ->getMethodMapper($paymentMethod->getPaymentType())
32 32
             ->paymentRefund($orderTransfer, $partialOrderTransfer, $orderItems);
33 33
 
34
-        $response = $this->sendRequest((string)$request);
34
+        $response = $this->sendRequest((string) $request);
35 35
         $this->logInfo($request, $response, $paymentMethod->getPaymentType(), $paymentMethod->getFkSalesOrder(), $orderItems);
36 36
 
37 37
         if ($response->isSuccessful()) {
Please login to merge, or discard this patch.
Business/Request/Payment/Handler/Transaction/InitPaymentTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $request = $paymentMethod
29 29
             ->paymentInit($ratepayPaymentInitTransfer);
30
-        $response = $this->sendRequest((string)$request);
30
+        $response = $this->sendRequest((string) $request);
31 31
         $this->logInfo($request, $response, $paymentMethodName);
32 32
 
33 33
         $initResponseTransfer = $this->converterFactory
Please login to merge, or discard this patch.
Business/Request/Payment/Handler/Transaction/ConfirmPaymentTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             ->getMethodMapper($paymentMethod->getPaymentType())
32 32
             ->paymentConfirm($orderTransfer);
33 33
 
34
-        $response = $this->sendRequest((string)$request);
34
+        $response = $this->sendRequest((string) $request);
35 35
         $this->logInfo($request, $response, $paymentMethod->getPaymentType(), $paymentMethod->getFkSalesOrder());
36 36
 
37 37
         if ($response->isSuccessful()) {
Please login to merge, or discard this patch.
Business/Request/Payment/Handler/Transaction/RequestPaymentTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $request = $this->getMethodMapper($paymentMethodName)
29 29
             ->paymentRequest($ratepayPaymentRequestTransfer);
30
-        $response = $this->sendRequest((string)$request);
30
+        $response = $this->sendRequest((string) $request);
31 31
         $this->logInfo($request, $response, $paymentMethodName, $ratepayPaymentRequestTransfer->getOrderId());
32 32
 
33 33
         $responseTransfer = $this->converterFactory
Please login to merge, or discard this patch.
Request/Payment/Handler/Transaction/InstallmentCalculationTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $request = $paymentMethod
33 33
             ->calculationRequest($quoteTransfer);
34 34
 
35
-        $response = $this->sendRequest((string)$request);
35
+        $response = $this->sendRequest((string) $request);
36 36
         $this->logInfo($request, $response, $paymentMethodName);
37 37
 
38 38
         $responseTransfer = $this->converterFactory
Please login to merge, or discard this patch.
Business/Request/Payment/Handler/Transaction/ConfirmDeliveryTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             ->getMethodMapper($paymentMethod->getPaymentType())
32 32
             ->deliveryConfirm($orderTransfer, $partialOrderTransfer, $orderItems);
33 33
 
34
-        $response = $this->sendRequest((string)$request);
34
+        $response = $this->sendRequest((string) $request);
35 35
         $this->logInfo($request, $response, $paymentMethod->getPaymentType(), $paymentMethod->getFkSalesOrder());
36 36
 
37 37
         if ($response->isSuccessful()) {
Please login to merge, or discard this patch.
Ratepay/Business/Request/Payment/Handler/Transaction/BaseTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             'request_type' => static::TRANSACTION_TYPE,
73 73
             'request_transaction_id' => (isset($headData['transaction-id'])) ? $headData['transaction-id'] : null,
74 74
             'request_transaction_short_id' => (isset($headData['transaction-short-id'])) ? $headData['transaction-short-id'] : null,
75
-            'request_body' => (string)$request,
75
+            'request_body' => (string) $request,
76 76
 
77 77
             'response_type' => $response->getResponseType(),
78 78
             'response_result_code' => $response->getResultCode(),
Please login to merge, or discard this patch.
Business/Request/Payment/Handler/Transaction/CancelPaymentTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             ->getMethodMapper($paymentMethod->getPaymentType())
32 32
             ->paymentCancel($orderTransfer, $partialOrderTransfer, $orderItems);
33 33
 
34
-        $response = $this->sendRequest((string)$request);
34
+        $response = $this->sendRequest((string) $request);
35 35
         $this->logInfo($request, $response, $paymentMethod->getPaymentType(), $paymentMethod->getFkSalesOrder(), $orderItems);
36 36
 
37 37
         if ($response->isSuccessful()) {
Please login to merge, or discard this patch.