Grid.php 479 B

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