public function Tar::getArchive

Retrieves the tar engine itself.

In some cases it may be necessary to directly access the underlying Archive_Tar object for implementation-specific logic. This is for advanced use only as it is not shared by other implementations of ArchiveInterface.

Return value

Archive_Tar The Archive_Tar object used by this object.

File

drupal/core/lib/Drupal/Component/Archiver/Tar.php, line 92
Definition of Drupal\Component\Archiver\Tar.

Class

Tar
Defines a archiver implementation for .tar files.

Namespace

Drupal\Component\Archiver

Code

public function getArchive() {
  return $this->tar;
}