From b76e2ff898b23745d4c9aaee49eeb7d88f2896ab Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Thu, 2 Mar 2017 22:49:24 -0500 Subject: Updated mailgun plugin --- inc/mailgun/guzzlehttp/psr7/src/LazyOpenStream.php | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 inc/mailgun/guzzlehttp/psr7/src/LazyOpenStream.php (limited to 'inc/mailgun/guzzlehttp/psr7/src/LazyOpenStream.php') diff --git a/inc/mailgun/guzzlehttp/psr7/src/LazyOpenStream.php b/inc/mailgun/guzzlehttp/psr7/src/LazyOpenStream.php new file mode 100644 index 0000000..02cec3a --- /dev/null +++ b/inc/mailgun/guzzlehttp/psr7/src/LazyOpenStream.php @@ -0,0 +1,39 @@ +filename = $filename; + $this->mode = $mode; + } + + /** + * Creates the underlying stream lazily when required. + * + * @return StreamInterface + */ + protected function createStream() + { + return stream_for(try_fopen($this->filename, $this->mode)); + } +} -- cgit v1.2.3