Grid.php 448 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Paypal\Controller\Adminhtml\Paypal\Reports;
  8. class Grid extends \Magento\Paypal\Controller\Adminhtml\Paypal\Reports
  9. {
  10. /**
  11. * Ajax callback for grid actions
  12. *
  13. * @return void
  14. */
  15. public function execute()
  16. {
  17. $this->_view->loadLayout(false);
  18. $this->_view->renderLayout();
  19. }
  20. }