Differences Between: [Versions 311 and 402] [Versions 311 and 403]
1 <?php 2 declare(strict_types=1); 3 4 namespace ZipStream\Option; 5 6 use MyCLabs\Enum\Enum; 7 8 /** 9 * Class Version 10 * @package ZipStream\Option 11 * 12 * @method static STORE(): Version 13 * @method static DEFLATE(): Version 14 * @method static ZIP64(): Version 15 * @psalm-immutable 16 */ 17 class Version extends Enum 18 { 19 const STORE = 0x000A; // 1.00 20 const DEFLATE = 0x0014; // 2.00 21 const ZIP64 = 0x002D; // 4.50 22 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body