known = $known; $this->unknown = $unknown; $this->match_percent = $match_percent; $this->scores = $scores; } /** * @return ITSEC_Fingerprint */ public function get_known() { return $this->known; } /** * @return ITSEC_Fingerprint */ public function get_unknown() { return $this->unknown; } /** * @return float|int */ public function get_match_percent() { return $this->match_percent; } /** * Get the raw score evaluation * * @return array */ public function get_scores() { return $this->scores; } }