<?php
namespace Zemez\Blog\Controller\Router;

/**
 * Interceptor class for @see \Zemez\Blog\Controller\Router
 */
class Interceptor extends \Zemez\Blog\Controller\Router implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\App\ActionFactory $actionFactory, \Zemez\Blog\Helper\Data $helper, \Zemez\Blog\Model\PostFactory $postFactory, \Zemez\Blog\Model\CategoryFactory $categoryFactory, \Magento\Framework\Registry $registry, \Zemez\Blog\Model\Url $url)
    {
        $this->___init();
        parent::__construct($actionFactory, $helper, $postFactory, $categoryFactory, $registry, $url);
    }

    /**
     * {@inheritdoc}
     */
    public function match(\Magento\Framework\App\RequestInterface $request)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'match');
        return $pluginInfo ? $this->___callPlugins('match', func_get_args(), $pluginInfo) : parent::match($request);
    }
}
