Resources/ZipStream/Option/Method.php
Dennis Eichhorn 7e0153ea0f perm change
2023-03-25 22:32:11 +00:00

24 lines
343 B
PHP
Executable File

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