26 lines
1.2 KiB
PHP
Executable File
26 lines
1.2 KiB
PHP
Executable File
<?php
|
|
namespace Magento\MysqlMq\Model\ResourceModel\MessageCollection;
|
|
|
|
/**
|
|
* Interceptor class for @see \Magento\MysqlMq\Model\ResourceModel\MessageCollection
|
|
*/
|
|
class Interceptor extends \Magento\MysqlMq\Model\ResourceModel\MessageCollection implements \Magento\Framework\Interception\InterceptorInterface
|
|
{
|
|
use \Magento\Framework\Interception\Interceptor;
|
|
|
|
public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null)
|
|
{
|
|
$this->___init();
|
|
parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource);
|
|
}
|
|
|
|
/**
|
|
* {@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);
|
|
}
|
|
}
|