public static function remove()

in src/_Private/Filesystem.hack [24:31]


  public static function remove(string $path): void {
    if (!\file_exists($path)) {
      return;
    }
    if (!\unlink($path)) {
      throw new \Exception('Unable to remove `'.$path."'.");
    }
  }