Index.php 633 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\CatalogSearch\Controller\Advanced;
  8. use Magento\Framework\App\Action\HttpGetActionInterface;
  9. use Magento\Framework\App\Action\HttpPostActionInterface;
  10. use Magento\Framework\Controller\ResultFactory;
  11. /**
  12. * Advanced search controller.
  13. */
  14. class Index extends \Magento\Framework\App\Action\Action implements HttpGetActionInterface, HttpPostActionInterface
  15. {
  16. /**
  17. * @inheritdoc
  18. */
  19. public function execute()
  20. {
  21. return $this->resultFactory->create(ResultFactory::TYPE_PAGE);
  22. }
  23. }