1 | <?php |
||
9 | class Json25519Parser extends JsonParser |
||
10 | { |
||
11 | /** |
||
12 | * Parses a HTTP request body. |
||
13 | * @param string $rawBody the raw HTTP request body. |
||
14 | * @param string $contentType the content type specified for the request body. |
||
15 | * @return array parameters parsed from the request body |
||
16 | * @throws BadRequestHttpException if the body contains invalid json and [[throwException]] is `true`. |
||
17 | */ |
||
18 | public function parse($rawBody, $contentType) |
||
32 | } |