Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Rate.php
Go to the documentation of this file.
1 <?php
7 
11 abstract class Rate extends \Magento\Backend\App\Action
12 {
18  const ADMIN_RESOURCE = 'Magento_Tax::manage_tax';
19 
23  protected $fileFactory;
24 
29  public function __construct(
30  \Magento\Backend\App\Action\Context $context,
31  \Magento\Framework\App\Response\Http\FileFactory $fileFactory
32  ) {
33  $this->fileFactory = $fileFactory;
34  parent::__construct($context);
35  }
36 }
__construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\App\Response\Http\FileFactory $fileFactory)
Definition: Rate.php:29