* @since 2.0 */ interface RequestParserInterface { /** * @param string $rawBody the raw HTTP request body * @return array parameters parsed from the request body */ public function parse($rawBody); }