Skip to content

Commit d24a8fa

Browse files
committed
Added semicolon to HTTP endpoint example.
1 parent 68fb4ce commit d24a8fa

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)