![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-quote-graph-ql/Model/Cart/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\QuoteGraphQl\Model\Cart; use Magento\Framework\Exception\InputException; use Magento\Framework\Exception\NoSuchEntityException; use Magento\Framework\GraphQl\Exception\GraphQlInputException; use Magento\Framework\GraphQl\Exception\GraphQlNoSuchEntityException; use Magento\Quote\Api\Data\AddressInterface; use Magento\Quote\Api\Data\CartInterface; use Magento\Quote\Model\ShippingAddressManagementInterface; /** * Assigning shipping address to cart */ class AssignShippingAddressToCart { /** * @var ShippingAddressManagementInterface */ private $shippingAddressManagement; /** * @param ShippingAddressManagementInterface $shippingAddressManagement */ public function __construct( ShippingAddressManagementInterface $shippingAddressManagement ) { $this->shippingAddressManagement = $shippingAddressManagement; } /** * Assign shipping address to cart * * @param CartInterface $cart * @param AddressInterface $shippingAddress * @throws GraphQlInputException * @throws GraphQlNoSuchEntityException */ public function execute( CartInterface $cart, AddressInterface $shippingAddress ): void { try { $this->shippingAddressManagement->assign($cart->getId(), $shippingAddress); } catch (NoSuchEntityException $e) { if ($cart->getIsVirtual()) { throw new GraphQlNoSuchEntityException( __('Shipping address is not allowed on cart: cart contains no items for shipment.'), $e ); } else { throw new GraphQlNoSuchEntityException(__($e->getMessage()), $e); } } catch (InputException $e) { throw new GraphQlInputException(__($e->getMessage()), $e); } } }