From 8264616454b2199366f11c7f45f98ddaff05b8c1 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Mon, 30 Apr 2012 00:00:39 +0300 Subject: [PATCH] Un-indent `$server->run()` in README, use port 8000 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 523457b..5398c6b 100644 --- a/README.md +++ b/README.md @@ -84,9 +84,9 @@ class Chat implements MessageComponentInterface { } } - // Run the server application through the WebSocket protocol - $server = new IOServerComponent(new WebSocketComponent(new Chat)); - $server->run(80); +// Run the server application through the WebSocket protocol +$server = new IOServerComponent(new WebSocketComponent(new Chat)); +$server->run(8000); ``` # php chat.php \ No newline at end of file