コード例 #1
0
ファイル: VirtualFile.php プロジェクト: DavidGarciaCat/eyeos
 /**
  * Forces fetching stats from the current file now (if supported).
  * @return bool
  */
 public function fetchStats()
 {
     if ($this->realFile === null) {
         throw new EyeUnsupportedOperationException(__METHOD__ . ' on ' . $this->path);
     }
     return $this->realFile->fetchStats();
 }