summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail/mailgun/vendor/php-http/message-factory/src/StreamFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Mail/mailgun/vendor/php-http/message-factory/src/StreamFactory.php')
-rw-r--r--Postman/Postman-Mail/mailgun/vendor/php-http/message-factory/src/StreamFactory.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/Postman/Postman-Mail/mailgun/vendor/php-http/message-factory/src/StreamFactory.php b/Postman/Postman-Mail/mailgun/vendor/php-http/message-factory/src/StreamFactory.php
deleted file mode 100644
index 327a902..0000000
--- a/Postman/Postman-Mail/mailgun/vendor/php-http/message-factory/src/StreamFactory.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-namespace Http\Message;
-
-use Psr\Http\Message\StreamInterface;
-
-/**
- * Factory for PSR-7 Stream.
- *
- * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
- */
-interface StreamFactory
-{
- /**
- * Creates a new PSR-7 stream.
- *
- * @param string|resource|StreamInterface|null $body
- *
- * @return StreamInterface
- *
- * @throws \InvalidArgumentException If the stream body is invalid.
- * @throws \RuntimeException If creating the stream from $body fails.
- */
- public function createStream($body = null);
-}