Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Index.php
Go to the documentation of this file.
1 <?php
13 
18 abstract class Index extends \Magento\Backend\App\Action
19 {
25  const ADMIN_RESOURCE = 'Magento_Reports::report';
26 
30  protected $_fileFactory;
31 
36  public function __construct(
37  \Magento\Backend\App\Action\Context $context,
38  \Magento\Framework\App\Response\Http\FileFactory $fileFactory
39  ) {
40  $this->_fileFactory = $fileFactory;
41  parent::__construct($context);
42  }
43 }
__construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\App\Response\Http\FileFactory $fileFactory)
Definition: Index.php:36