Action.php 325 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Generic backend controller
  8. */
  9. namespace Magento\Backend\App;
  10. /**
  11. * @api
  12. * @SuppressWarnings(PHPMD.NumberOfChildren)
  13. * @since 100.0.2
  14. */
  15. abstract class Action extends \Magento\Backend\App\AbstractAction
  16. {
  17. }