| Current Path : /home/m/a/g/maglabs/it/lib/internal/Magento/Framework/App/Request/ |
| Current File : /home/m/a/g/maglabs/it/lib/internal/Magento/Framework/App/Request/PathInfoProcessorInterface.php |
<?php
/**
* PATH_INFO processor
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\App\Request;
/**
* @api
* @since 100.0.2
*/
interface PathInfoProcessorInterface
{
/**
* Process Request path info
*
* @param \Magento\Framework\App\RequestInterface $request
* @param string $pathInfo
* @return string
*/
public function process(\Magento\Framework\App\RequestInterface $request, $pathInfo);
}