From d754989ada43d3ca904baae079a0fbb10f856de5 Mon Sep 17 00:00:00 2001 From: Sascha-Oliver Prolic Date: Wed, 11 Apr 2018 23:29:52 +0800 Subject: [PATCH] fix docs, add missing "}", fix formatting --- pq/Connection/: Asynchronous Usage.md | 49 ++++++++++++++------------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/pq/Connection/: Asynchronous Usage.md b/pq/Connection/: Asynchronous Usage.md index b19779b..1043a49 100644 --- a/pq/Connection/: Asynchronous Usage.md +++ b/pq/Connection/: Asynchronous Usage.md @@ -39,32 +39,33 @@ Keep in mind that you have to test for write-readiness once *before* starting th if (stream_select($r, $w, $e, null)) { - // loop until the connection is established - while (true) { + // loop until the connection is established + while (true) { - switch ($c->poll()) { + switch ($c->poll()) { - case pq\Connection::POLLING_READING: - // we should wait for the stream to be read-ready - $r = array($c->socket); - stream_select($r, $w, $e, NULL); - break; - - case pq\Connection::POLLING_WRITING: - // we should wait for the stream to be write-ready - $w = array($c->socket); - $r = $e = null; - stream_select($r, $w, $e, null); - break; - - case pq\Connection::POLLING_FAILED: - printf("Connection failed: %s\n", $c->errorMessage); - break 2; - - case pq\Connection::POLLING_OK: - printf("Connection completed\n"); - break 2; - } + case pq\Connection::POLLING_READING: + // we should wait for the stream to be read-ready + $r = array($c->socket); + stream_select($r, $w, $e, NULL); + break; + + case pq\Connection::POLLING_WRITING: + // we should wait for the stream to be write-ready + $w = array($c->socket); + $r = $e = null; + stream_select($r, $w, $e, null); + break; + + case pq\Connection::POLLING_FAILED: + printf("Connection failed: %s\n", $c->errorMessage); + break 2; + + case pq\Connection::POLLING_OK: + printf("Connection completed\n"); + break 2; + } + } } ?> -- 2.30.2