Method.php 298 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace ZipStream\Option;
  4. use MyCLabs\Enum\Enum;
  5. /**
  6. * Methods enum
  7. *
  8. * @method static STORE(): Method
  9. * @method static DEFLATE(): Method
  10. * @psalm-immutable
  11. */
  12. class Method extends Enum
  13. {
  14. public const STORE = 0x00;
  15. public const DEFLATE = 0x08;
  16. }