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