isHbbTv()) { return null; } parent::parse(); // always set device type to tv, even if no model/brand could be found if (null === $this->deviceType) { $this->deviceType = self::DEVICE_TYPE_TV; } return $this->getResult(); } /** * Returns if the parsed UA was identified as a HbbTV device * * @return string|null */ public function isHbbTv(): ?string { $regex = '(?:HbbTV|SmartTvA)/([1-9]{1}(?:\.[0-9]{1}){1,2})'; $match = $this->matchUserAgent($regex); return $match[1] ?? null; } }