We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07b5999 commit e145428Copy full SHA for e145428
src/Stream/StandardStream.php
@@ -16,6 +16,7 @@
16
use InvalidArgumentException;
17
use Psr\Http\Message\StreamInterface;
18
use RuntimeException;
19
+use Stringable;
20
21
use function clearstatcache;
22
use function fclose;
@@ -42,7 +43,7 @@
42
43
* Author: Martijn van der Ven <[email protected]>.
44
* @license https://github.com/Nyholm/psr7/blob/master/LICENSE
45
*/
-final class StandardStream implements StreamInterface
46
+final class StandardStream implements Stringable, StreamInterface
47
{
48
/** @var array Hash of readable and writable stream types */
49
private const READ_WRITE_HASH = [
0 commit comments