| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | protected function addEntries(): void |
||
| 23 | { |
||
| 24 | $this->addEntry('part', IEntryType::TYPE_SET, [IRegistry::HKEY_CLASSES_ROOT, IRegistry::HKEY_CURRENT_CONFIG, IRegistry::HKEY_CURRENT_USER, IRegistry::HKEY_LOCAL_MACHINE, IRegistry::HKEY_USERS, ]); |
||
| 25 | $this->addEntry('path', IEntryType::TYPE_STRING, 1024); |
||
| 26 | $this->addEntry('type', IEntryType::TYPE_SET, [IRegistry::REG_BINARY, IRegistry::REG_DWORD, IRegistry::REG_EXPAND_SZ, IRegistry::REG_MULTI_SZ, IRegistry::REG_NONE, IRegistry::REG_SZ, ]); |
||
| 27 | $this->addEntry('content', IEntryType::TYPE_STRING, PHP_INT_MAX); |
||
| 28 | $this->setMapper(WinRegistry::class); |
||
| 29 | } |
||
| 31 |