From e7a6dfe48b63a7ba1533032fc6af4ef50f82b82c Mon Sep 17 00:00:00 2001 From: Thorsten Hallwas Date: Sun, 27 Nov 2016 03:56:18 +0100 Subject: [PATCH] Fix documentation for URLs (#82) --- Resources/doc/usage.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/doc/usage.rst b/Resources/doc/usage.rst index 5872f25..4ff5d54 100644 --- a/Resources/doc/usage.rst +++ b/Resources/doc/usage.rst @@ -78,7 +78,7 @@ This is usually the URL of the same controller action that redirected the user t 'paypal_express_checkout' => [ 'return_url' => $this->generateUrl('app_orders_paymentcreate', [ 'id' => $order->getId(), - ), UrlGeneratorInterface::ABSOLUTE_URL), + ], UrlGeneratorInterface::ABSOLUTE_URL), ], ]; @@ -105,7 +105,7 @@ The URL to which the user is redirected when they cancel the payment on PayPal's 'paypal_express_checkout' => [ 'cancel_url' => $this->generateUrl('app_orders_paymentcancel', [ 'id' => $order->getId(), - ), UrlGeneratorInterface::ABSOLUTE_URL), + ], UrlGeneratorInterface::ABSOLUTE_URL), ], ]; @@ -134,7 +134,7 @@ The URL to which Instant Payment Notifications (IPN) will be sent. 'paypal_express_checkout' => [ 'notify_url' => $this->generateUrl('app_orders_ipn', [ 'id' => $order->getId(), - ), UrlGeneratorInterface::ABSOLUTE_URL), + ], UrlGeneratorInterface::ABSOLUTE_URL), ], ];