aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php')
-rw-r--r--vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php b/vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php
deleted file mode 100644
index bf621bc09..000000000
--- a/vendor/maennchen/zipstream-php/src/Zs/ExtendedInformationExtraField.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace ZipStream\Zs;
-
-use ZipStream\PackField;
-
-/**
- * @internal
- */
-abstract class ExtendedInformationExtraField
-{
- private const TAG = 0x5653;
-
- public static function generate(): string
- {
- return PackField::pack(
- new PackField(format: 'v', value: self::TAG),
- new PackField(format: 'v', value: 0x0000),
- );
- }
-}