for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Firegento\DevDashboard\Controller\Adminhtml\Index;
class Index extends \Magento\Backend\App\Action
{
const ADMIN_RESOURCE = 'Firegento_DevDashboard::devdashboard';
protected $resultPageFactory;
public function __construct(
\Magento\Backend\App\Action\Context $context,
\Magento\Framework\View\Result\PageFactory $resultPageFactory
) {
$this->resultPageFactory = $resultPageFactory;
parent::__construct($context);
}
public function execute()
return $this->resultPageFactory->create();