| 1 | <?php |
||
| 11 | final class StreamFactory implements StreamFactoryInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * {@inheritdoc} |
||
| 15 | */ |
||
| 16 | public function createStream(string $content = ''): StreamInterface |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function createStreamFromFile(string $filename, string $mode = 'rb'): StreamInterface |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function createStreamFromResource($resource): StreamInterface |
||
| 56 | } |
||
| 57 |