private function getMachineId() : ?string { return match ($this->os) { 'Linux' => $this->getLinuxId(), 'BSD' => $this->getBsdId(), 'Darwin' => $this->getMacOsId(), 'Windows' => $this->getWindowsId(), default => null, }; }