Grid.php 451 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Controller\Adminhtml\Order;
  7. class Grid extends \Magento\Sales\Controller\Adminhtml\Order
  8. {
  9. /**
  10. * Order grid
  11. *
  12. * @return \Magento\Framework\View\Result\Layout
  13. */
  14. public function execute()
  15. {
  16. $resultLayout = $this->resultLayoutFactory->create();
  17. return $resultLayout;
  18. }
  19. }