1
0
Fork 0

Style fix

pull/112/head
Stephan Unverwerth 2016-10-24 23:22:41 +02:00
parent 45ac0c8b5f
commit a44b501319
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class ProtocolStreamWriter implements ProtocolWriter
public function __construct($output)
{
$this->output = $output;
Loop\addWriteStream($this->output, function() {
Loop\addWriteStream($this->output, function () {
$msgSize = strlen($this->buffer);
$bytesWritten = @fwrite($this->output, $this->buffer);
if ($bytesWritten > 0) {