1 | <?php |
||
20 | class FileStream extends AbstractStream implements StreamInterface |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * Creates a File Stream |
||
25 | * |
||
26 | * @param string $file The file FQ name to create the stream from |
||
27 | * |
||
28 | * @throws InvalidArgumentException If provided file does not exists |
||
29 | */ |
||
30 | public function __construct($file) |
||
40 | } |