RouterInterface.php 465 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Router. Matches action from request
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\App;
  9. /**
  10. * Interface \Magento\Framework\App\RouterInterface
  11. *
  12. */
  13. interface RouterInterface
  14. {
  15. /**
  16. * Match application action by request
  17. *
  18. * @param RequestInterface $request
  19. * @return ActionInterface
  20. */
  21. public function match(RequestInterface $request);
  22. }