Method.php 282 B

12345678910111213141516171819
  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. const STORE = 0x00;
  15. const DEFLATE = 0x08;
  16. }