You are here

public function ArchiveTar::__destruct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Archiver/ArchiveTar.php \Drupal\Core\Archiver\ArchiveTar::__destruct()

File

core/lib/Drupal/Core/Archiver/ArchiveTar.php, line 261

Class

ArchiveTar

Namespace

Drupal\Core\Archiver

Code

public function __destruct() {
  $this
    ->_close();

  // ----- Look for a local copy to delete
  if ($this->_temp_tarname != '') {
    @drupal_unlink($this->_temp_tarname);
  }
}