25 lines
680 B
PHP
Executable File
25 lines
680 B
PHP
Executable File
<?php
|
|
namespace Magento\Webapi\Model\Config\Converter;
|
|
|
|
/**
|
|
* Interceptor class for @see \Magento\Webapi\Model\Config\Converter
|
|
*/
|
|
class Interceptor extends \Magento\Webapi\Model\Config\Converter implements \Magento\Framework\Interception\InterceptorInterface
|
|
{
|
|
use \Magento\Framework\Interception\Interceptor;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->___init();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function convert($source)
|
|
{
|
|
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'convert');
|
|
return $pluginInfo ? $this->___callPlugins('convert', func_get_args(), $pluginInfo) : parent::convert($source);
|
|
}
|
|
}
|