mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-10-09 20:36:35 +02:00
ZipContainer will be cloned before writing the zip file. Tested custom ZipWriter, ZipReader, ZipContainer and ZipFile.
22 lines
313 B
PHP
22 lines
313 B
PHP
<?php
|
|
|
|
namespace PhpZip\Tests\Internal\Epub;
|
|
|
|
use PhpZip\IO\ZipReader;
|
|
|
|
/**
|
|
* Class EpubReader.
|
|
*/
|
|
class EpubReader extends ZipReader
|
|
{
|
|
/**
|
|
* @return bool
|
|
*
|
|
* @see https://github.com/w3c/epubcheck/issues/334
|
|
*/
|
|
protected function isZip64Support()
|
|
{
|
|
return false;
|
|
}
|
|
}
|