Lines Matching refs:Date
50 private Date|null $estimated_birth_date = null;
52 private Date|null $estimated_death_date = null;
61 …return static fn (Individual $x, Individual $y): int => Date::compare($x->getEstimatedBirthDate(),…
71 …return static fn (Individual $x, Individual $y): int => Date::compare($x->getEstimatedDeathDate(),…
104 $date = new Date($match[1]);
115 $date = new Date($match[1]);
233 $date = new Date($date_match);
253 $date = new Date($date_match);
265 $date = new Date($date_match);
276 $date = new Date($date_match);
288 $date = new Date($date_match);
299 $date = new Date($date_match);
360 * @return Date
362 public function getBirthDate(): Date
370 return new Date('');
390 * @return Date
392 public function getDeathDate(): Date
400 return new Date('');
531 * @return Date
533 public function getEstimatedBirthDate(): Date
606 $this->estimated_birth_date = new Date('EST ' . $year);
608 $this->estimated_birth_date = new Date(''); // always return a date object
619 * @return Date
621 public function getEstimatedDeathDate(): Date
635 $this->estimated_death_date = new Date(''); // always return a date object