| Current Path : /var/www/html/generated/code/Magento/Framework/Data/Collection/Filesystem/ |
| Current File : /var/www/html/generated/code/Magento/Framework/Data/Collection/Filesystem/Interceptor.php |
<?php
namespace Magento\Framework\Data\Collection\Filesystem;
/**
* Interceptor class for @see \Magento\Framework\Data\Collection\Filesystem
*/
class Interceptor extends \Magento\Framework\Data\Collection\Filesystem implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(?\Magento\Framework\Data\Collection\EntityFactoryInterface $_entityFactory = null, ?\Magento\Framework\Filesystem $filesystem = null)
{
$this->___init();
parent::__construct($_entityFactory, $filesystem);
}
/**
* {@inheritdoc}
*/
public function getCurPage($displacement = 0)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage');
return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement);
}
}