Skip to content

Commit

Permalink
[#14936] - Changed getJsonRawBody to use json_decode
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed May 31, 2020
1 parent 645a5a1 commit 702c68f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phalcon/Http/Request.zep
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ class Request extends AbstractInjectionAware implements RequestInterface
return false;
}

return Json::decode(rawBody, associative);
return json_decode(rawBody, associative);
}

/**
Expand Down

0 comments on commit 702c68f

Please sign in to comment.