Index.php 294 B

1234567891011121314151617
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Framework\Controller\Index;
  8. class Index extends \Magento\Framework\App\Action\Action
  9. {
  10. /**
  11. * @return void
  12. */
  13. public function execute()
  14. {
  15. }
  16. }