From f96850a5445276b92f54e2a64f18eb1d4fa81e60 Mon Sep 17 00:00:00 2001 From: Marc Guyer Date: Mon, 25 Jun 2018 10:04:35 -0400 Subject: [PATCH] Get the stream --- src/Client.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Client.php b/src/Client.php index b5ec390..93b22dd 100644 --- a/src/Client.php +++ b/src/Client.php @@ -602,4 +602,12 @@ protected function sendMessages(array $messages) return $this; } + + /** + * @return StreamWriter The stream + */ + public function getStream() + { + return $this->stream; + } }