RequestParserInterface.php 669 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\web;

/**
11
 * Interface for classes that parse the raw request body into a parameters array.
12 13 14 15 16 17
 *
 * @author Dan Schmidt <danschmidt5189@gmail.com>
 * @since 2.0
 */
interface RequestParserInterface
{
18 19
    /**
     * Parses a HTTP request body.
20 21 22
     * @param string $rawBody the raw HTTP request body.
     * @param string $contentType the content type specified for the request body.
     * @return array parameters parsed from the request body
23 24
     */
    public function parse($rawBody, $contentType);
25
}