1234567891011121314151617181920 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Controller\Adminhtml\Order;
- class Grid extends \Magento\Sales\Controller\Adminhtml\Order
- {
- /**
- * Order grid
- *
- * @return \Magento\Framework\View\Result\Layout
- */
- public function execute()
- {
- $resultLayout = $this->resultLayoutFactory->create();
- return $resultLayout;
- }
- }
|