| 1 | <?php |
||
| 10 | abstract class FileExplorerMatcher |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Return a matcher callable for files that have been modified after a certain timestamp. |
||
| 14 | * |
||
| 15 | * @param \DateTime $time |
||
| 16 | * |
||
| 17 | * @throws \Exception |
||
| 18 | * |
||
| 19 | * @return \Closure |
||
| 20 | */ |
||
| 21 | public static function modifiedAfter(\DateTime $time) |
||
| 33 | } |
||
| 34 |