EpubReader.php 553 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of the nelexa/zip package.
  5. * (c) Ne-Lexa <https://github.com/Ne-Lexa/php-zip>
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. namespace PhpZip\Tests\Internal\Epub;
  10. use PhpZip\IO\ZipReader;
  11. /**
  12. * Class EpubReader.
  13. */
  14. class EpubReader extends ZipReader
  15. {
  16. /**
  17. * @see https://github.com/w3c/epubcheck/issues/334
  18. */
  19. protected function isZip64Support(): bool
  20. {
  21. return false;
  22. }
  23. }