12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestFixture\Controller\Adminhtml;
- use Magento\Framework\App\RequestInterface;
- use Magento\Framework\App\ResponseInterface;
- /**
- * Mock index controller class
- */
- class Noroute implements \Magento\Framework\App\ActionInterface
- {
- /**
- * Dispatch request
- *
- * @return ResponseInterface
- * @throws \Magento\Framework\Exception\NotFoundException
- */
- public function execute()
- {
- }
- /**
- * Get Response object
- *
- * @return ResponseInterface
- */
- public function getResponse()
- {
- }
- }
|