*/ class FileResource implements ResourceInterface { private $path; /** * Constructor. * * @param string $path The path to a file */ public function __construct($path) { $this->path = $path; } public function isFresh($timestamp) { return filemtime($this->path) <= $timestamp; } public function getContent() { return file_get_contents($this->path); } public function __toString() { return $this->path; } }