mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
24 lines
343 B
PHP
Executable File
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;
|
|
}
|