| Total Complexity | 8 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | final class Elf64SectionHeaderTable |
||
| 17 | { |
||
| 18 | /** @var Elf64SectionHeaderEntry[] */ |
||
| 19 | private array $entries; |
||
| 20 | |||
| 21 | public function __construct( |
||
| 22 | private Elf64StringTable $section_name_table, |
||
| 23 | Elf64SectionHeaderEntry ...$entries |
||
| 24 | ) { |
||
| 25 | $this->entries = $entries; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function findSymbolTableEntry(): ?Elf64SectionHeaderEntry |
||
| 36 | } |
||
| 37 | |||
| 38 | public function findStringTableEntry(): ?Elf64SectionHeaderEntry |
||
| 48 |