id; } /** * Get name. * * @return string */ public function getName() { return $this->name; } /** * Set name. * * @param string $name * * @return PasskeysAuthType */ public function setName($name) { $this->name = $name; return $this; } /** * Get route. * * @return string */ public function getRoute() { return $this->route; } /** * Set route. * * @param string $route * * @return PasskeysAuthType */ public function setRoute($route) { $this->route = $route; return $this; } /** * @return bool */ public function isDisabled(): bool { return $this->isDisabled; } /** * @param bool $isDisabled */ public function setIsDisabled(bool $isDisabled): void { $this->isDisabled = $isDisabled; } }