From e509e76d5fd500acd4169a720d5defdbc2eb7b50 Mon Sep 17 00:00:00 2001 From: Alexander Zinovev Date: Fri, 15 Mar 2019 14:24:49 +0100 Subject: [PATCH] InstantShopping: Add codingStandardsIgnore tag to be able to populate the link to docs. --- src/Klarna/Rest/InstantShopping/Orders.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Klarna/Rest/InstantShopping/Orders.php b/src/Klarna/Rest/InstantShopping/Orders.php index 13718ea..436c013 100644 --- a/src/Klarna/Rest/InstantShopping/Orders.php +++ b/src/Klarna/Rest/InstantShopping/Orders.php @@ -56,6 +56,10 @@ public function __construct(Connector $connector, $authorizationToken) /** * Retrieves an authorized order based on the authorization token. * + * @codingStandardsIgnoreStart + * @see https://developers.klarna.com/api/#instant-shopping-api-retrieves-an-authorized-order-based-on-the-authorization-token + * @codingStandardsIgnoreEnd + * * @throws ConnectorException When the API replies with an error response * @throws RequestException When an error is encountered * @throws \RuntimeException On an unexpected API response @@ -73,6 +77,10 @@ public function retrieve() /** * Declines an authorized order identified by the authorization token. * + * @codingStandardsIgnoreStart + * @see https://developers.klarna.com/api/#instant-shopping-api-declines-an-authorized-order-identified-by-the-authorization-token + * @codingStandardsIgnoreEnd + * * @param array $data Decline data * * @throws ConnectorException When the API replies with an error response @@ -94,6 +102,10 @@ public function decline(array $data = null) /** * Approves the authorized order and places an order identified by the authorization token. * + * @codingStandardsIgnoreStart + * @see https://developers.klarna.com/api/#instant-shopping-api-approve-the-authorized-order-and-place-an-order-identified-by-the-authorization-token + * @codingStandardsIgnoreEnd + * * @param array $data Order data * * @throws ConnectorException When the API replies with an error response