![]() 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/cartforge.co/generated/code/Magento/Wishlist/Model/Wishlist/ |
<?php namespace Magento\Wishlist\Model\Wishlist; /** * Interceptor class for @see \Magento\Wishlist\Model\Wishlist */ class Interceptor extends \Magento\Wishlist\Model\Wishlist implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Catalog\Helper\Product $catalogProduct, \Magento\Wishlist\Helper\Data $wishlistData, \Magento\Wishlist\Model\ResourceModel\Wishlist $resource, \Magento\Wishlist\Model\ResourceModel\Wishlist\Collection $resourceCollection, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Stdlib\DateTime\DateTime $date, \Magento\Wishlist\Model\ItemFactory $wishlistItemFactory, \Magento\Wishlist\Model\ResourceModel\Item\CollectionFactory $wishlistCollectionFactory, \Magento\Catalog\Model\ProductFactory $productFactory, \Magento\Framework\Math\Random $mathRandom, \Magento\Framework\Stdlib\DateTime $dateTime, \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, $useCurrentWebsite = true, array $data = [], ?\Magento\Framework\Serialize\Serializer\Json $serializer = null, ?\Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry = null, ?\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig = null, ?\Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration = null) { $this->___init(); parent::__construct($context, $registry, $catalogProduct, $wishlistData, $resource, $resourceCollection, $storeManager, $date, $wishlistItemFactory, $wishlistCollectionFactory, $productFactory, $mathRandom, $dateTime, $productRepository, $useCurrentWebsite, $data, $serializer, $stockRegistry, $scopeConfig, $stockConfiguration); } /** * {@inheritdoc} */ public function loadByCode($code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByCode'); return $pluginInfo ? $this->___callPlugins('loadByCode', func_get_args(), $pluginInfo) : parent::loadByCode($code); } }