| 1 | <?php |
||
| 15 | final class StreamFactory implements StreamFactoryInterface |
||
| 16 | { |
||
| 17 | private const MODES = [ |
||
| 18 | 'r', 'w', 'a', 'x', 'c' |
||
| 19 | ]; |
||
| 20 | |||
| 21 | public function createStream(string $content = ''): StreamInterface |
||
| 25 | |||
| 26 | public function createStreamFromResource($resource): StreamInterface |
||
| 30 | |||
| 31 | public function createStreamFromFile(string $filename, string $mode = 'r'): StreamInterface |
||
| 44 | } |