<?php
namespace Zemez\Blog\Ui\Component\Listing\Column\CommentActions;

/**
 * Interceptor class for @see \Zemez\Blog\Ui\Component\Listing\Column\CommentActions
 */
class Interceptor extends \Zemez\Blog\Ui\Component\Listing\Column\CommentActions implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\View\Element\UiComponent\ContextInterface $context, \Magento\Framework\View\Element\UiComponentFactory $uiComponentFactory, \Magento\Framework\UrlInterface $urlBuilder, array $components = [], array $data = [], $editUrl = 'tm_blog/comment/edit')
    {
        $this->___init();
        parent::__construct($context, $uiComponentFactory, $urlBuilder, $components, $data, $editUrl);
    }

    /**
     * {@inheritdoc}
     */
    public function prepare()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'prepare');
        return $pluginInfo ? $this->___callPlugins('prepare', func_get_args(), $pluginInfo) : parent::prepare();
    }
}
