Noroute.php 669 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestFixture\Controller\Adminhtml;
  7. use Magento\Framework\App\RequestInterface;
  8. use Magento\Framework\App\ResponseInterface;
  9. /**
  10. * Mock index controller class
  11. */
  12. class Noroute implements \Magento\Framework\App\ActionInterface
  13. {
  14. /**
  15. * Dispatch request
  16. *
  17. * @return ResponseInterface
  18. * @throws \Magento\Framework\Exception\NotFoundException
  19. */
  20. public function execute()
  21. {
  22. }
  23. /**
  24. * Get Response object
  25. *
  26. * @return ResponseInterface
  27. */
  28. public function getResponse()
  29. {
  30. }
  31. }