Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
0 / 0
CRAP
100.00% covered (success)
100.00%
0 / 0
Zip
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
0 / 0
0
100.00% covered (success)
100.00%
0 / 0
<?php
/**
 * @file
 * Contains \Drupal\system\Plugin\Archiver\Zip.
 */
namespace Drupal\system\Plugin\Archiver;
use Drupal\Core\Archiver\Zip as BaseZip;
/**
 * Defines an archiver implementation for .zip files.
 *
 * @link http://php.net/zip
 *
 * @Archiver(
 *   id = "Zip",
 *   title = @Translation("Zip"),
 *   description = @Translation("Handles zip files."),
 *   extensions = {"zip"}
 * )
 */
class Zip extends BaseZip {
}