1 | <?php |
||
21 | class Filesystem extends FilesystemBase |
||
22 | { |
||
23 | /** |
||
24 | * Reads the content of a filename. |
||
25 | * |
||
26 | * @param string The file to which to read the content. |
||
27 | * |
||
28 | * @return string The content of the filename. |
||
29 | * |
||
30 | * @throws FileNotFoundException When the filename does not exist. |
||
31 | * @throws IOException When the filename cannot be read. |
||
32 | */ |
||
33 | 1 | public function readFile($filename) |
|
44 | } |
||
45 |