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