mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-10-09 20:36:35 +02:00
21 lines
332 B
PHP
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);
|
|
}
|
|
}
|