| Current Path : /var/www/www.indacotrentino.com/www/app/code/Torresani/Consent/Controller/Privacy/ |
| Current File : //var/www/www.indacotrentino.com/www/app/code/Torresani/Consent/Controller/Privacy/Index.php |
<?php
namespace Torresani\Consent\Controller\Privacy;
class Index extends \Magento\Framework\App\Action\Action
{
/**
* @var \Magento\Framework\View\Result\PageFactory
*/
protected $resultPageFactory;
/**
* @param \Magento\Framework\App\Action\Context $context
* @param \Magento\Framework\View\Result\PageFactory resultPageFactory
*/
public function __construct(
\Magento\Framework\App\Action\Context $context,
\Magento\Framework\View\Result\PageFactory $resultPageFactory
)
{
$this->resultPageFactory = $resultPageFactory;
parent::__construct($context);
}
/**
* Default customer account page
*
* @return void
*/
public function execute()
{
return $this->resultPageFactory->create();
}
}
?>