xref: /template/strap/ComboStrap/FileSystem.php (revision 977ce05d19d8dab0a70c9a27f8da0b7039299e82)
1<?php
2
3
4namespace ComboStrap;
5
6
7use DateTime;
8
9interface FileSystem
10{
11
12    function exists(Path $path);
13
14    function getContent(Path $path);
15
16    function getModifiedTime(Path $path): ?DateTime;
17
18
19
20}
21