Total Complexity | 2 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Partition extends Descriptor |
||
12 | { |
||
13 | /** |
||
14 | * The "Partition Volume Descriptors"'s System Identifier |
||
15 | */ |
||
16 | public string $systemID; |
||
17 | |||
18 | /** |
||
19 | * The "Partition Volume Descriptors"'s Partition Identifier |
||
20 | */ |
||
21 | public string $volPartitionID; |
||
22 | |||
23 | /** |
||
24 | * The "Partition Volume Descriptors"'s Partition location |
||
25 | */ |
||
26 | public int $volPartitionLocation; |
||
27 | |||
28 | /** |
||
29 | * The "Partition Volume Descriptors"'s Partition size |
||
30 | */ |
||
31 | public int $volPartitionSize; |
||
32 | |||
33 | public string $name = 'Partition volume descriptor'; |
||
34 | |||
35 | protected int $type = Type::PARTITION_VOLUME_DESC; |
||
36 | |||
37 | public function init(IsoFile $isoFile, int &$offset): void |
||
57 |