Skip to content

Commit

Permalink
Fix documentation for URLs (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepotronic authored and psrpinto committed Nov 27, 2016
1 parent 773a1bd commit e7a6dfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/doc/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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),
],
];
Expand All @@ -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),
],
];
Expand Down Expand Up @@ -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),
],
];
Expand Down

0 comments on commit e7a6dfe

Please sign in to comment.