Completed
Push — master ( 471de5...3f2836 )
by Martin
06:16
created
app/Http/Controllers/TicketShop/PaymentProviderController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,12 +63,12 @@
 block discarded – undo
63 63
         } catch (PaymentProviderException $e) {
64 64
             $returnable->with('status', $e->getMessage());
65 65
         } catch (PayPalConnectionException $e) {
66
-            Log::warning('[PayPal] [paymentId='. $paymentId . '|payerId=' . $payerId . '] ' . $e->getMessage());
66
+            Log::warning('[PayPal] [paymentId=' . $paymentId . '|payerId=' . $payerId . '] ' . $e->getMessage());
67 67
             // This will print the detailed information on the exception.
68 68
             //REALLY HELPFUL FOR DEBUGGING
69 69
             Log::error($e->getData());
70 70
         } catch (\Exception $e) {
71
-            Log::warning('[General] [paymentId='. $paymentId . '|payerId=' . $payerId . '] ' . $e->getMessage());
71
+            Log::warning('[General] [paymentId=' . $paymentId . '|payerId=' . $payerId . '] ' . $e->getMessage());
72 72
         }
73 73
         return $returnable;
74 74
     }
Please login to merge, or discard this patch.