Tar.php in Drupal 8
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\system\Plugin\ArchiverFile
core/modules/system/src/Plugin/Archiver/Tar.phpView source
<?php
namespace Drupal\system\Plugin\Archiver;
use Drupal\Core\Archiver\Tar as BaseTar;
/**
* Defines an archiver implementation for .tar files.
*
* @Archiver(
* id = "Tar",
* title = @Translation("Tar"),
* description = @Translation("Handles .tar files."),
* extensions = {"tar", "tgz", "tar.gz", "tar.bz2"}
* )
*/
class Tar extends BaseTar {
}