id = $id; } public function get_id() : int { return $this->id; } /** * Check wether this object is valid or not * * @return bool TRUE if this object is valid / FALSE else */ public function isValid() : bool { return $this->id > 0; } }