/**
  * Clear the next stat result from the cache
  *
  * @param string $path If a path is specific, clearstatcache() will be called
  */
 protected function clearStatInfo($path = null)
 {
     self::$nextStat = array();
     if ($path) {
         clearstatcache(true, $path);
     }
 }