<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Advanced Product Reviews Base for Magento 2
 */

namespace Amasty\AdvancedReview\Block\Review\Product\View;

class ListView extends \Magento\Review\Block\Product\View\ListView
{
    /**
     * Prepare product review list toolbar
     *
     * @return \Amasty\AdvancedReview\Block\Review\Product\View\ListView
     * @throws \Magento\Framework\Exception\LocalizedException
     */
    protected function _prepareLayout()
    {
        if (!$this->getProduct()) {
            return $this;
        }

        return parent::_prepareLayout();
    }
}
