fix port bug

(cherry picked from commit 72e8607)
This commit is contained in:
Ben Zhu 2018-05-09 10:18:43 +07:00 committed by Vladimir Razuvaev
parent 78e2862e3b
commit 57c77623ee

View File

@ -106,7 +106,7 @@ echo json_encode($output);
Our example is finished. Try it by running: Our example is finished. Try it by running:
```sh ```sh
php -S localhost:8000 graphql.php php -S localhost:8080 graphql.php
curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }' curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }'
``` ```