Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Subscriber.php
Go to the documentation of this file.
1 <?php
7 
12 {
18  const ADMIN_RESOURCE = 'Magento_Newsletter::subscriber';
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: Subscriber.php:29