keybind_id; } /** * @param int $keybind_id * * @return Keybind */ public function setKeybindId(int $keybind_id): Keybind { $this->keybind_id = $keybind_id; return $this; } /** * @return string */ public function getKeybindKeys(): string { return $this->keybind_keys; } /** * @param string $keybind_keys * * @return Keybind */ public function setKeybindKeys(string $keybind_keys): Keybind { $this->keybind_keys = $keybind_keys; return $this; } /** * @return string */ public function getKeybindDescription(): string { return $this->keybind_description; } /** * @param string $keybind_description * * @return Keybind */ public function setKeybindDescription(string $keybind_description): Keybind { $this->keybind_description = $keybind_description; return $this; } }