![]() 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\Api\BillingAddressManagementInterface; /** * Set billing address for a specified shopping cart */ class AssignBillingAddressToCart { /** * @var BillingAddressManagementInterface */ private $billingAddressManagement; /** * @param BillingAddressManagementInterface $billingAddressManagement */ public function __construct( BillingAddressManagementInterface $billingAddressManagement ) { $this->billingAddressManagement = $billingAddressManagement; } /** * Assign billing address to cart * * @param CartInterface $cart * @param AddressInterface $billingAddress * @param bool $sameAsShipping * @throws GraphQlInputException * @throws GraphQlNoSuchEntityException */ public function execute( CartInterface $cart, AddressInterface $billingAddress, bool $sameAsShipping ): void { try { $this->billingAddressManagement->assign($cart->getId(), $billingAddress, $sameAsShipping); } catch (NoSuchEntityException $e) { throw new GraphQlNoSuchEntityException(__($e->getMessage()), $e); } catch (InputException $e) { throw new GraphQlInputException(__($e->getMessage()), $e); } } }