| 1 | <?php |
||
| 17 | final class StreamFactory implements StreamFactoryInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @inheritdoc |
||
| 21 | * @throws RuntimeException |
||
| 22 | */ |
||
| 23 | public function createStream(string $content = ''): StreamInterface |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritdoc |
||
| 38 | */ |
||
| 39 | public function createStreamFromFile(string $file, string $mode = 'rb'): StreamInterface |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritdoc |
||
| 52 | */ |
||
| 53 | public function createStreamFromResource($resource): StreamInterface |
||
| 57 | } |
||
| 58 |