Skip to content

Commit

Permalink
Update Even.php
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata authored Oct 25, 2021
1 parent e79eeca commit c022d4e
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions src/Record/Fam/Even.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,85 @@ public function addNote($note = [])
{
$this->_note[] = $note;
}

/**
* @return string
*/
public function getDate()
{
return $this->_date;
}

/**
* @return \PhpGedcom\Record\Indi\Even\Plac
*/
public function getPlac()
{
return $this->_plac;
}

/**
* @return array
*/
public function getSour()
{
return $this->_sour;
}

/**
* @return array
*/
public function getNote()
{
return $this->_note;
}

/**
* @return array
*/
public function getObje()
{
return $this->obje;
}

/**
* @return \PhpGedcom\Record\Addr
*/
public function getAddr()
{
return $this->_addr;
}

/**
* @return string
*/
public function getAge()
{
return $this->_age;
}

/**
* @return string
*/
public function getAgnc()
{
return $this->_agnc;
}

/**
* @return string
*/
public function getCaus()
{
return $this->_caus;
}

/**
* @return string
*/
public function getType()
{
return $this->_type;
}
}
}

0 comments on commit c022d4e

Please sign in to comment.