Grid.php 410 B

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