123456789101112131415161718192021 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote;
- class ApplyRules extends \Magento\SalesRule\Controller\Adminhtml\Promo\Quote
- {
- /**
- * Apply rules action
- *
- * @return void
- */
- public function execute()
- {
- $this->_initAction();
- $this->_view->renderLayout();
- }
- }
|