| 123456789101112131415161718192021 |
- <?php
- declare(strict_types=1);
- namespace ZipStream\Option;
- use MyCLabs\Enum\Enum;
- /**
- * Methods enum
- *
- * @method static STORE(): Method
- * @method static DEFLATE(): Method
- * @psalm-immutable
- */
- class Method extends Enum
- {
- public const STORE = 0x00;
- public const DEFLATE = 0x08;
- }
|