magento2-docker/generated/code/Magento/Framework/Data/Collection/Interceptor.php

26 lines
813 B
PHP
Executable File

<?php
namespace Magento\Framework\Data\Collection;
/**
* Interceptor class for @see \Magento\Framework\Data\Collection
*/
class Interceptor extends \Magento\Framework\Data\Collection implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory)
{
$this->___init();
parent::__construct($entityFactory);
}
/**
* {@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);
}
}