1
0
Fork 0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-04-01 03:46:09 +03:00

fix port bug

This commit is contained in:
Ben Zhu 2018-05-09 11:18:43 +08:00 committed by GitHub
parent ec0985619f
commit 72e8607e47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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