Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
4 | class Index extends \Magento\Backend\App\Action |
||
5 | { |
||
6 | |||
7 | const ADMIN_RESOURCE = 'Firegento_DevDashboard::devdashboard'; |
||
8 | |||
9 | protected $resultPageFactory; |
||
10 | public function __construct( |
||
11 | \Magento\Backend\App\Action\Context $context, |
||
12 | \Magento\Framework\View\Result\PageFactory $resultPageFactory |
||
13 | ) { |
||
14 | $this->resultPageFactory = $resultPageFactory; |
||
15 | parent::__construct($context); |
||
16 | } |
||
17 | |||
18 | public function execute() |
||
21 | } |
||
22 | } |
||
23 |