Файловый менеджер - Редактировать - /data/vhosts/magento/www/generated/code/Magento/Catalog/Api/ProductRepositoryInterface/Proxy.php
Назад
<?php namespace Magento\Catalog\Api\ProductRepositoryInterface; /** * Proxy class for @see \Magento\Catalog\Api\ProductRepositoryInterface */ class Proxy implements \Magento\Catalog\Api\ProductRepositoryInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Catalog\Api\ProductRepositoryInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Catalog\\Api\\ProductRepositoryInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { if ($this->_subject) { $this->_subject = clone $this->_getSubject(); } } /** * Debug proxied instance */ public function __debugInfo() { return ['i' => $this->_subject]; } /** * Get proxied instance * * @return \Magento\Catalog\Api\ProductRepositoryInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function save(\Magento\Catalog\Api\Data\ProductInterface $product, $saveOptions = false) { return $this->_getSubject()->save($product, $saveOptions); } /** * {@inheritdoc} */ public function get($sku, $editMode = false, $storeId = null, $forceReload = false) { return $this->_getSubject()->get($sku, $editMode, $storeId, $forceReload); } /** * {@inheritdoc} */ public function getById($productId, $editMode = false, $storeId = null, $forceReload = false) { return $this->_getSubject()->getById($productId, $editMode, $storeId, $forceReload); } /** * {@inheritdoc} */ public function delete(\Magento\Catalog\Api\Data\ProductInterface $product) { return $this->_getSubject()->delete($product); } /** * {@inheritdoc} */ public function deleteById($sku) { return $this->_getSubject()->deleteById($sku); } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { return $this->_getSubject()->getList($searchCriteria); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.31 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка