26 lines
1.3 KiB
PHP
Executable File
26 lines
1.3 KiB
PHP
Executable File
<?php
|
|
namespace Magento\Framework\Api\DataObjectHelper;
|
|
|
|
/**
|
|
* Interceptor class for @see \Magento\Framework\Api\DataObjectHelper
|
|
*/
|
|
class Interceptor extends \Magento\Framework\Api\DataObjectHelper implements \Magento\Framework\Interception\InterceptorInterface
|
|
{
|
|
use \Magento\Framework\Interception\Interceptor;
|
|
|
|
public function __construct(\Magento\Framework\Api\ObjectFactory $objectFactory, \Magento\Framework\Reflection\DataObjectProcessor $objectProcessor, \Magento\Framework\Reflection\TypeProcessor $typeProcessor, \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $joinProcessor, \Magento\Framework\Reflection\MethodsMap $methodsMapProcessor)
|
|
{
|
|
$this->___init();
|
|
parent::__construct($objectFactory, $objectProcessor, $typeProcessor, $extensionFactory, $joinProcessor, $methodsMapProcessor);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function populateWithArray($dataObject, array $data, $interfaceName)
|
|
{
|
|
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'populateWithArray');
|
|
return $pluginInfo ? $this->___callPlugins('populateWithArray', func_get_args(), $pluginInfo) : parent::populateWithArray($dataObject, $data, $interfaceName);
|
|
}
|
|
}
|