| Current Path : /home/rtorresani/www/generated/code/Magento/Webapi/Controller/Rest/ParamsOverrider/ |
| Current File : //home/rtorresani/www/generated/code/Magento/Webapi/Controller/Rest/ParamsOverrider/Interceptor.php |
<?php
namespace Magento\Webapi\Controller\Rest\ParamsOverrider;
/**
* Interceptor class for @see \Magento\Webapi\Controller\Rest\ParamsOverrider
*/
class Interceptor extends \Magento\Webapi\Controller\Rest\ParamsOverrider implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(array $paramOverriders = [], ?\Magento\Framework\Api\SimpleDataObjectConverter $dataObjectConverter = null)
{
$this->___init();
parent::__construct($paramOverriders, $dataObjectConverter);
}
/**
* {@inheritdoc}
*/
public function override(array $inputData, array $parameters)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'override');
return $pluginInfo ? $this->___callPlugins('override', func_get_args(), $pluginInfo) : parent::override($inputData, $parameters);
}
/**
* {@inheritdoc}
*/
public function overrideRequestBodyIdWithPathParam(array $urlPathParams, array $requestBodyParams, $serviceClassName, $serviceMethodName)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'overrideRequestBodyIdWithPathParam');
return $pluginInfo ? $this->___callPlugins('overrideRequestBodyIdWithPathParam', func_get_args(), $pluginInfo) : parent::overrideRequestBodyIdWithPathParam($urlPathParams, $requestBodyParams, $serviceClassName, $serviceMethodName);
}
}