Fix content-type header match when parsing PSR request.

This commit is contained in:
Jiri Pokorny 2018-01-21 21:02:43 +01:00
parent 7310b25730
commit dca2091351

View File

@ -482,9 +482,9 @@ class Helper
throw new RequestError('Missing "Content-Type" header');
}
if (stripos('application/graphql', $contentType[0]) !== false) {
if (stripos($contentType[0], 'application/graphql') !== false) {
$bodyParams = ['query' => $request->getBody()->getContents()];
} else if (stripos('application/json', $contentType[0]) !== false) {
} else if (stripos($contentType[0], 'application/json') !== false) {
$bodyParams = $request->getParsedBody();
if (null === $bodyParams) {