Your IP : 216.73.216.43


Current Path : /proc/thread-self/root/home/rtorresani/www/app/code/Torresani/Consent/Controller/Privacy/
Upload File :
Current File : //proc/thread-self/root/home/rtorresani/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();
    }
}
?>