You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RequestParserInterface.php 669B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\web;
  8. /**
  9. * Interface for classes that parse the raw request body into a parameters array.
  10. *
  11. * @author Dan Schmidt <danschmidt5189@gmail.com>
  12. * @since 2.0
  13. */
  14. interface RequestParserInterface
  15. {
  16. /**
  17. * Parses a HTTP request body.
  18. * @param string $rawBody the raw HTTP request body.
  19. * @param string $contentType the content type specified for the request body.
  20. * @return array parameters parsed from the request body
  21. */
  22. public function parse($rawBody, $contentType);
  23. }