1
0
Fork 0
pull/111/merge
Felix Becker 2016-10-24 21:14:12 +00:00 committed by GitHub
commit c59bec40a0
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class ProtocolStreamWriter implements ProtocolWriter
$totalBytesWritten = 0; $totalBytesWritten = 0;
while ($totalBytesWritten < $msgSize) { while ($totalBytesWritten < $msgSize) {
$bytesWritten = fwrite($this->output, substr($data, $totalBytesWritten)); $bytesWritten = @fwrite($this->output, substr($data, $totalBytesWritten));
$totalBytesWritten += $bytesWritten; $totalBytesWritten += $bytesWritten;
} }
} }