123456789101112131415161718192021222324 |
- <?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);
- }
|