1
0
Fork 0

Make ProtocolStreamWriter::write() public

pull/6/head v2.0.3
Felix Becker 2016-08-25 17:01:29 +02:00
parent b7e051f2ce
commit 21034df05b
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class ProtocolStreamWriter implements ProtocolWriter
* @param Message $msg * @param Message $msg
* @return void * @return void
*/ */
private function write(Message $msg) public function write(Message $msg)
{ {
fwrite($this->output, (string)$msg); fwrite($this->output, (string)$msg);
} }