<?php
namespace Mirasvit\CacheWarmer\Model\ResourceModel\Trace\Grid;

/**
 * Interceptor class for @see \Mirasvit\CacheWarmer\Model\ResourceModel\Trace\Grid
 */
class Interceptor extends \Mirasvit\CacheWarmer\Model\ResourceModel\Trace\Grid 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, $mainTable = 'mst_cache_warmer_trace', $resourceModel = 'Mirasvit\\CacheWarmer\\Model\\ResourceModel\\Trace')
    {
        $this->___init();
        parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $mainTable, $resourceModel);
    }

    /**
     * {@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);
    }
}
