in src/html/XHPHTMLHelpers.hack [37:44]
public function requireUniqueID(): string {
$id = $this->getAttributes()['id'] ?? null;
if ($id === null || $id === '') {
$id = \bin2hex(\random_bytes(5));
$this->setAttribute('id', $id);
}
return (string)$id;
}