1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-06-01 19:45:29 +02:00
php-zip/tests/Internal/ZipFileExtended.php

18 lines
270 B
PHP

<?php
namespace PhpZip\Tests\Internal;
use PhpZip\ZipFile;
/**
* Class ZipFileExtended.
*/
class ZipFileExtended extends ZipFile
{
protected function onBeforeSave()
{
parent::onBeforeSave();
$this->deleteFromRegex('~^META\-INF/~i');
}
}