Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/Denied/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/Denied/Index.php

<?php
/**
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Backend\Controller\Adminhtml\Denied;

use Magento\Backend\Controller\Adminhtml\Denied;
use Magento\Framework\App\Action\HttpGetActionInterface as HttpGet;
use Magento\Framework\App\Action\HttpPostActionInterface as HttpPost;

/**
 * Denied Action
 */
class Index extends Denied implements HttpGet, HttpPost
{
    /**
     * Check if user has permissions to access this controller
     *
     * @return bool
     */
    protected function _isAllowed()
    {
        return true;
    }
}