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