26 lines
735 B
PHP
Executable File
26 lines
735 B
PHP
Executable File
<?php
|
|
namespace Magento\Framework\Api\Uploader;
|
|
|
|
/**
|
|
* Interceptor class for @see \Magento\Framework\Api\Uploader
|
|
*/
|
|
class Interceptor extends \Magento\Framework\Api\Uploader implements \Magento\Framework\Interception\InterceptorInterface
|
|
{
|
|
use \Magento\Framework\Interception\Interceptor;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->___init();
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function save($destinationFolder, $newFileName = null)
|
|
{
|
|
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'save');
|
|
return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save($destinationFolder, $newFileName);
|
|
}
|
|
}
|