HttpGetActionInterface.php 334 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Framework\App\Action;
  8. use Magento\Framework\App\ActionInterface;
  9. /**
  10. * Marker for actions processing GET requests.
  11. */
  12. interface HttpGetActionInterface extends ActionInterface
  13. {
  14. }