first commit
This commit is contained in:
19
phpspreadsheet_1.8.1.0/vendor/maennchen/zipstream-php/src/Option/Method.php
vendored
Executable file
19
phpspreadsheet_1.8.1.0/vendor/maennchen/zipstream-php/src/Option/Method.php
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
<?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
|
||||
{
|
||||
const STORE = 0x00;
|
||||
const DEFLATE = 0x08;
|
||||
}
|
Reference in New Issue
Block a user