| Current Path : /var/www/html/generated/code/Magento/CatalogInventory/Api/StockRegistryInterface/ |
| Current File : /var/www/html/generated/code/Magento/CatalogInventory/Api/StockRegistryInterface/Proxy.php |
<?php
namespace Magento\CatalogInventory\Api\StockRegistryInterface;
/**
* Proxy class for @see \Magento\CatalogInventory\Api\StockRegistryInterface
*/
class Proxy implements \Magento\CatalogInventory\Api\StockRegistryInterface, \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\CatalogInventory\Api\StockRegistryInterface
*/
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\\CatalogInventory\\Api\\StockRegistryInterface', $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()
{
$this->_subject = clone $this->_getSubject();
}
/**
* Get proxied instance
*
* @return \Magento\CatalogInventory\Api\StockRegistryInterface
*/
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 getStock($scopeId = null)
{
return $this->_getSubject()->getStock($scopeId);
}
/**
* {@inheritdoc}
*/
public function getStockItem($productId, $scopeId = null)
{
return $this->_getSubject()->getStockItem($productId, $scopeId);
}
/**
* {@inheritdoc}
*/
public function getStockItemBySku($productSku, $scopeId = null)
{
return $this->_getSubject()->getStockItemBySku($productSku, $scopeId);
}
/**
* {@inheritdoc}
*/
public function getStockStatus($productId, $scopeId = null)
{
return $this->_getSubject()->getStockStatus($productId, $scopeId);
}
/**
* {@inheritdoc}
*/
public function getStockStatusBySku($productSku, $scopeId = null)
{
return $this->_getSubject()->getStockStatusBySku($productSku, $scopeId);
}
/**
* {@inheritdoc}
*/
public function getProductStockStatus($productId, $scopeId = null)
{
return $this->_getSubject()->getProductStockStatus($productId, $scopeId);
}
/**
* {@inheritdoc}
*/
public function getProductStockStatusBySku($productSku, $scopeId = null)
{
return $this->_getSubject()->getProductStockStatusBySku($productSku, $scopeId);
}
/**
* {@inheritdoc}
*/
public function getLowStockItems($scopeId, $qty, $currentPage = 1, $pageSize = 0)
{
return $this->_getSubject()->getLowStockItems($scopeId, $qty, $currentPage, $pageSize);
}
/**
* {@inheritdoc}
*/
public function updateStockItemBySku($productSku, \Magento\CatalogInventory\Api\Data\StockItemInterface $stockItem)
{
return $this->_getSubject()->updateStockItemBySku($productSku, $stockItem);
}
}