Skip to content

Commit

Permalink
Static test fix.
Browse files Browse the repository at this point in the history
(cherry picked from commit 1238e4d)
  • Loading branch information
nmalevanec authored and hostep committed Feb 19, 2019
1 parent 47aee60 commit 8e19a73
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
use Magento\Quote\Model\Quote;

/**
* Guest payment information management model.
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class GuestPaymentInformationManagement implements \Magento\Checkout\Api\GuestPaymentInformationManagementInterface
Expand Down Expand Up @@ -65,7 +67,7 @@ class GuestPaymentInformationManagement implements \Magento\Checkout\Api\GuestPa
* @param \Magento\Checkout\Api\PaymentInformationManagementInterface $paymentInformationManagement
* @param \Magento\Quote\Model\QuoteIdMaskFactory $quoteIdMaskFactory
* @param CartRepositoryInterface $cartRepository
* @param ResourceConnection|null
* @param ResourceConnection $connectionPool
* @codeCoverageIgnore
*/
public function __construct(
Expand All @@ -87,7 +89,7 @@ public function __construct(
}

/**
* {@inheritDoc}
* @inheritdoc
*/
public function savePaymentInformationAndPlaceOrder(
$cartId,
Expand Down Expand Up @@ -128,7 +130,7 @@ public function savePaymentInformationAndPlaceOrder(
}

/**
* {@inheritDoc}
* @inheritdoc
*/
public function savePaymentInformation(
$cartId,
Expand All @@ -155,7 +157,7 @@ public function savePaymentInformation(
}

/**
* {@inheritDoc}
* @inheritdoc
*/
public function getPaymentInformation($cartId)
{
Expand Down

0 comments on commit 8e19a73

Please sign in to comment.