__construct()
__construct(\Psr\Http\Message\StreamInterface $stream)
Parameters
\Psr\Http\Message\StreamInterface | $stream | Stream to decorate |
Stream decorator that prevents a stream from being seeked
__construct(\Psr\Http\Message\StreamInterface $stream)
\Psr\Http\Message\StreamInterface | $stream | Stream to decorate |
__get(string $name) : \Psr\Http\Message\StreamInterface
Magic method used to create a new stream if streams are not added in the constructor of a decorator (e.g., LazyOpenStream).
string | $name | Name of the property (allows "stream" only). |
seek(integer $offset, integer $whence = SEEK_SET)
Seek to a position in the stream.
integer | $offset | Stream offset |
integer | $whence | Specifies how the cursor position will be calculated
based on the seek offset. Valid values are identical to the built-in
PHP $whence values for |
createStream() : \Psr\Http\Message\StreamInterface
Implement in subclasses to dynamically create streams when requested.