Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
porteria
/
vendor
/
maennchen
/
zipstream-php
/
src
/
Option
:
Method.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace ZipStream\Option; use MyCLabs\Enum\Enum; /** * Methods enum * * @method static STORE(): Method * @method static DEFLATE(): Method * @psalm-immutable */ class Method extends Enum { public const STORE = 0x00; public const DEFLATE = 0x08; }