for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* php-gedcom.
*
* php-gedcom is a library for parsing, manipulating, importing and exporting
* GEDCOM 5.5 files in PHP 5.3+.
* @author Kristopher Wilson <[email protected]>
* @copyright Copyright (c) 2010-2013, Kristopher Wilson
* @license MIT
* @link http://github.com/mrkrstphr/php-gedcom
*/
namespace Gedcom\Record;
* Class Subn.
class Subn extends \Gedcom\Record
{
* @var string
protected $subn;
protected $subm;
protected $famf;
protected $temp;
protected $ance;
protected $desc;
protected $ordi;
protected $rin;
* @var array
protected $_note = [];
* @var \Gedcom\Record\Chan
protected $_chan;
public function setChan($chan)
$this->_chan = $chan;
return $this;
}
public function getChan()
return $this->_chan;
public function addNote($note)
$this->_note[] = $note;
public function getNote()
return $this->_note;
* @param string $subn
* @return Subn
public function setSubn($subn = '')
$this->subn = $subn;
* @return string
public function getSubn()
return $this->subn;
* @param string $subm
public function setSubm($subm = '')
$this->subm = $subm;
public function getSubm()
return $this->subm;
* @param string $famf
public function setFamf($famf = '')
$this->famf = $famf;
public function getFamf()
return $this->famf;
* @param string $temp
public function setTemp($temp = '')
$this->temp = $temp;
public function getTemp()
return $this->temp;
* @param string $ance
public function setAnce($ance = '')
$this->ance = $ance;
public function getAnce()
return $this->ance;
* @param string $desc
public function setDesc($desc = '')
$this->desc = $desc;
public function getDesc()
return $this->desc;
* @param string $ordi
public function setOrdi($ordi = '')
$this->ordi = $ordi;
public function getOrdi()
return $this->ordi;
* @param string $rin
public function setRin($rin = '')
$this->rin = $rin;
public function getRin()
return $this->rin;