Example #1
0
 /**
  * @inheritdoc
  */
 public function getModifiedTime($filePath)
 {
     $path = $this->getAbsolutePath($filePath);
     if (!file_exists($path)) {
         throw Exception::fileNotFound($path);
     }
     $time = new DateTime();
     return $time->setTimestamp(filemtime($path));
 }