Skip to content

Commit 68365e2

Browse files
committed
Merge pull request #13 from MPV/patch-1
Added semicolon to HTTP endpoint example.
2 parents 68fb4ce + d24a8fa commit 68365e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ use GraphQL\GraphQL;
432432
use \Exception;
433433

434434
if (isset($_SERVER['CONTENT_TYPE']) && $_SERVER['CONTENT_TYPE'] === 'application/json') {
435-
$rawBody = file_get_contents('php://input')
435+
$rawBody = file_get_contents('php://input');
436436
$data = json_decode($rawBody ?: '', true);
437437
} else {
438438
$data = $_POST;

0 commit comments

Comments
 (0)