ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Method.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types=1);
3 
4 namespace ZipStream\Option;
5 
7 
15 class Method extends Enum
16 {
17  const STORE = 0x00;
18  const DEFLATE = 0x08;
19 }
Base Enum class.
Definition: Enum.php:22
Methods enum.
Definition: Method.php:15