1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-10-09 20:36:35 +02:00
Files
php-zip/tests/Internal/CustomZip/ZipFileCustomWriter.php
2020-01-22 12:48:15 +03:00

21 lines
332 B
PHP

<?php
namespace PhpZip\Tests\Internal\CustomZip;
use PhpZip\IO\ZipWriter;
use PhpZip\ZipFile;
/**
* Class ZipFileCustomWriter.
*/
class ZipFileCustomWriter extends ZipFile
{
/**
* @return ZipWriter
*/
protected function createZipWriter()
{
return new CustomZipWriter($this->zipContainer);
}
}