From 64afb40907811c4c3b2d50b308d5c91910427c8f Mon Sep 17 00:00:00 2001 From: Stanislav Idolov <sidolov@ebay.com> Date: Tue, 27 Oct 2015 13:47:58 +0200 Subject: [PATCH] MAGETWO-44589: [Github] Make API jsonapi compliant --- .../Checkout/Model/GuestPaymentInformationManagement.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php b/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php index 7da2c8f274b..81ff1b2fd43 100644 --- a/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php +++ b/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php @@ -27,7 +27,7 @@ class GuestPaymentInformationManagement implements \Magento\Checkout\Api\GuestPa protected $cartManagement; /** - * @var \Magento\Checkout\Model\PaymentInformationManagement + * @var \Magento\Checkout\Api\PaymentInformationManagementInterface */ protected $paymentInformationManagement; @@ -45,7 +45,7 @@ class GuestPaymentInformationManagement implements \Magento\Checkout\Api\GuestPa * @param \Magento\Quote\Api\GuestBillingAddressManagementInterface $billingAddressManagement * @param \Magento\Quote\Api\GuestPaymentMethodManagementInterface $paymentMethodManagement * @param \Magento\Quote\Api\GuestCartManagementInterface $cartManagement - * @param PaymentInformationManagement $paymentInformationManagement + * @param \Magento\Checkout\Api\PaymentInformationManagementInterface $paymentInformationManagement * @param \Magento\Quote\Model\QuoteIdMaskFactory $quoteIdMaskFactory * @param CartRepositoryInterface $cartRepository * @codeCoverageIgnore @@ -54,7 +54,7 @@ class GuestPaymentInformationManagement implements \Magento\Checkout\Api\GuestPa \Magento\Quote\Api\GuestBillingAddressManagementInterface $billingAddressManagement, \Magento\Quote\Api\GuestPaymentMethodManagementInterface $paymentMethodManagement, \Magento\Quote\Api\GuestCartManagementInterface $cartManagement, - \Magento\Checkout\Model\PaymentInformationManagement $paymentInformationManagement, + \Magento\Checkout\Api\PaymentInformationManagementInterface $paymentInformationManagement, \Magento\Quote\Model\QuoteIdMaskFactory $quoteIdMaskFactory, CartRepositoryInterface $cartRepository ) { -- GitLab