Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/App/Router/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/App/Router/NoRouteHandlerInterface.php

<?php
/**
 * No route handler interface
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\App\Router;

/**
 * Interface \Magento\Framework\App\Router\NoRouteHandlerInterface
 *
 * @api
 */
interface NoRouteHandlerInterface
{
    /**
     * Check and process no route request
     *
     * @param \Magento\Framework\App\RequestInterface $request
     * @return bool
     */
    public function process(\Magento\Framework\App\RequestInterface $request);
}