Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Boot extends Descriptor |
||
12 | { |
||
13 | /** |
||
14 | * Specify an identification of a system which can recognize and act upon the content of the Boot Identifier and Boot System Use fields in the Boot Record |
||
15 | */ |
||
16 | public string $bootSysId = ''; |
||
17 | |||
18 | public int $bootCatalogLocation; |
||
19 | |||
20 | /** |
||
21 | * An identification of the boot system specified in the Boot System Use field of the Boot Record. |
||
22 | */ |
||
23 | public string $bootId = ''; |
||
24 | |||
25 | public string $name = 'Boot volume descriptor'; |
||
26 | |||
27 | protected int $type = Type::BOOT_RECORD_DESC; |
||
28 | |||
29 | 2 | public function init(IsoFile $isoFile, int &$offset): void |
|
43 |