![]() 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/generated/code/Magento/Checkout/Model/DefaultConfigProvider/ |
<?php namespace Magento\Checkout\Model\DefaultConfigProvider; /** * Interceptor class for @see \Magento\Checkout\Model\DefaultConfigProvider */ class Interceptor extends \Magento\Checkout\Model\DefaultConfigProvider implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Checkout\Helper\Data $checkoutHelper, \Magento\Checkout\Model\Session $checkoutSession, \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository, \Magento\Customer\Model\Session $customerSession, \Magento\Customer\Model\Url $customerUrlManager, \Magento\Framework\App\Http\Context $httpContext, \Magento\Quote\Api\CartRepositoryInterface $quoteRepository, \Magento\Quote\Api\CartItemRepositoryInterface $quoteItemRepository, \Magento\Quote\Api\ShippingMethodManagementInterface $shippingMethodManager, \Magento\Catalog\Helper\Product\ConfigurationPool $configurationPool, \Magento\Quote\Model\QuoteIdMaskFactory $quoteIdMaskFactory, \Magento\Framework\Locale\FormatInterface $localeFormat, \Magento\Customer\Model\Address\Mapper $addressMapper, \Magento\Customer\Model\Address\Config $addressConfig, \Magento\Framework\Data\Form\FormKey $formKey, \Magento\Catalog\Helper\Image $imageHelper, \Magento\Framework\View\ConfigInterface $viewConfig, \Magento\Directory\Model\Country\Postcode\ConfigInterface $postCodesConfig, \Magento\Checkout\Model\Cart\ImageProvider $imageProvider, \Magento\Directory\Helper\Data $directoryHelper, \Magento\Quote\Api\CartTotalRepositoryInterface $cartTotalRepository, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Shipping\Model\Config $shippingMethodConfig, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Quote\Api\PaymentMethodManagementInterface $paymentMethodManagement, \Magento\Framework\UrlInterface $urlBuilder, \Magento\Captcha\Api\CaptchaConfigPostProcessorInterface $configPostProcessor, ?\Magento\Customer\Api\AddressMetadataInterface $addressMetadata = null, ?\Magento\Eav\Api\AttributeOptionManagementInterface $attributeOptionManager = null, ?\Magento\Customer\Model\Address\CustomerAddressDataProvider $customerAddressData = null, ?\Magento\Framework\Escaper $escaper = null) { $this->___init(); parent::__construct($checkoutHelper, $checkoutSession, $customerRepository, $customerSession, $customerUrlManager, $httpContext, $quoteRepository, $quoteItemRepository, $shippingMethodManager, $configurationPool, $quoteIdMaskFactory, $localeFormat, $addressMapper, $addressConfig, $formKey, $imageHelper, $viewConfig, $postCodesConfig, $imageProvider, $directoryHelper, $cartTotalRepository, $scopeConfig, $shippingMethodConfig, $storeManager, $paymentMethodManagement, $urlBuilder, $configPostProcessor, $addressMetadata, $attributeOptionManager, $customerAddressData, $escaper); } /** * {@inheritdoc} */ public function getConfig() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConfig'); return $pluginInfo ? $this->___callPlugins('getConfig', func_get_args(), $pluginInfo) : parent::getConfig(); } /** * {@inheritdoc} */ public function getRegisterUrl() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRegisterUrl'); return $pluginInfo ? $this->___callPlugins('getRegisterUrl', func_get_args(), $pluginInfo) : parent::getRegisterUrl(); } /** * {@inheritdoc} */ public function getCheckoutUrl() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCheckoutUrl'); return $pluginInfo ? $this->___callPlugins('getCheckoutUrl', func_get_args(), $pluginInfo) : parent::getCheckoutUrl(); } /** * {@inheritdoc} */ public function pageNotFoundUrl() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'pageNotFoundUrl'); return $pluginInfo ? $this->___callPlugins('pageNotFoundUrl', func_get_args(), $pluginInfo) : parent::pageNotFoundUrl(); } /** * {@inheritdoc} */ public function getDefaultSuccessPageUrl() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultSuccessPageUrl'); return $pluginInfo ? $this->___callPlugins('getDefaultSuccessPageUrl', func_get_args(), $pluginInfo) : parent::getDefaultSuccessPageUrl(); } }