Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-reports/Controller/Adminhtml/Report/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-reports/Controller/Adminhtml/Report/Product.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Product reports admin controller
 *
 * @author     Magento Core Team <core@magentocommerce.com>
 */
namespace Magento\Reports\Controller\Adminhtml\Report;

/**
 * @api
 * @since 100.0.2
 */
abstract class Product extends AbstractReport
{
    /**
     * Add report/products breadcrumbs
     *
     * @return $this
     */
    public function _initAction()
    {
        parent::_initAction();
        $this->_addBreadcrumb(__('Products'), __('Products'));
        return $this;
    }
}