x Sorry, these patches are not available anymore due to data migration. Please run a fresh inspection.
Completed
Push — master ( ea357b...f9e202 )
by Cesar
14s queued 12s
created
src/Controller/Paypal/VaultController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public function vaultPayment(string $action)
24 24
     {
25 25
         $dataClientToken = $this->paypalService->getVaultService()->getDataClientToken();
26
-        return $this->render('paypal/vault/'. $action .'.html.twig', [
26
+        return $this->render('paypal/vault/' . $action . '.html.twig', [
27 27
             'dataClientToken' => $dataClientToken,
28 28
         ]);
29 29
     }
Please login to merge, or discard this patch.
src/Service/Paypal/BillingAgreementService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         return $this->doPaypalApiCall(
56 56
             $requestBody,
57 57
             'https://api.sandbox.paypal.com/v1/payments/payment',
58
-            ['PAYPAL-CLIENT-METADATA-ID: '.$fraudnetSession]
58
+            ['PAYPAL-CLIENT-METADATA-ID: ' . $fraudnetSession]
59 59
         );
60 60
     }
61 61
 
Please login to merge, or discard this patch.
src/Service/Paypal/AbstractPaypalService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
             $statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
36 36
             curl_close($ch);
37 37
         } catch (Exception $e) {
38
-            $this->logger->error('Error on PayPal::'.$url.' = ' . $e->getMessage());
38
+            $this->logger->error('Error on PayPal::' . $url . ' = ' . $e->getMessage());
39 39
             return null;
40 40
         }
41 41
         return ([
Please login to merge, or discard this patch.