mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 13:13:30 +03:00
Merge pull request #13 from MPV/patch-1
Added semicolon to HTTP endpoint example.
This commit is contained in:
commit
68365e29e7
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ use GraphQL\GraphQL;
|
|||
use \Exception;
|
||||
|
||||
if (isset($_SERVER['CONTENT_TYPE']) && $_SERVER['CONTENT_TYPE'] === 'application/json') {
|
||||
$rawBody = file_get_contents('php://input')
|
||||
$rawBody = file_get_contents('php://input');
|
||||
$data = json_decode($rawBody ?: '', true);
|
||||
} else {
|
||||
$data = $_POST;
|
||||
|
|
Loading…
Add table
Reference in a new issue