id = (int) $id; $this->name = (string) $name; $this->tp_id = $tp_id ? (int) $tp_id : null; } /** * @return int */ public function get_id() { return $this->id; } /** * @return string */ public function get_name() { return $this->name; } /** * @return int|null */ public function get_tp_id() { return $this->tp_id; } }