1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-08-08 16:36:28 +02:00

solving problems with lack of memory, the new ZipReader and ZipWriter class, adds .phpstorm.meta.php

#13
#16
#27
#31
#41
This commit is contained in:
Ne-Lexa
2019-12-30 18:47:37 +03:00
parent 28e220718c
commit f377b889b5
126 changed files with 12805 additions and 7819 deletions

View File

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