Skip to content
Snippets Groups Projects
Commit 225b570b authored by Henri-Damien LAURENT's avatar Henri-Damien LAURENT
Browse files

Merge branch 'hotline#157372_moisson_scholarvox' into 'master'

hotline#158762 : moisson scholarvox

See merge request !45
parents 55dd4c19 0435b4a3
1 merge request!45hotline#158762 : moisson scholarvox
Pipeline #18956 passed with stage
in 24 seconds
......@@ -51,4 +51,6 @@ abstract class Storm_FileSystem_Abstract {
abstract public function delete(string $path) : bool;
abstract public function readfile(string $path);
abstract public function mkdir($path);
}
......@@ -25,6 +25,11 @@ THE SOFTWARE.
*/
class Storm_FileSystem_Disk extends Storm_FileSystem_Abstract {
public function mkdir($path) {
return mkdir($path);
}
public function fileExists($path) {
return file_exists($path);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment