DefaultIndex.php 301 B

12345678910111213
  1. <?php
  2. /**
  3. * Default index action (with 404 Not Found headers)
  4. * Used if default page don't configure or available
  5. *
  6. * Copyright © Magento, Inc. All rights reserved.
  7. * See COPYING.txt for license details.
  8. */
  9. namespace Magento\Cms\Controller\Index;
  10. class DefaultIndex extends DefaultNoRoute
  11. {
  12. }