RequestContentInterface.php 510 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\App;
  7. /**
  8. * Interface provides access to parsed request data as well as to the request textual representation.
  9. * This interface exists to provide backward compatibility.
  10. * Direct usage of RequestInterface and PlainTextRequestInterface is preferable.
  11. *
  12. * @api
  13. * @since 101.0.0
  14. */
  15. interface RequestContentInterface extends RequestInterface, PlainTextRequestInterface
  16. {
  17. }