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 Refn.
class Refn extends \Gedcom\Record
{
* @var string
protected $refn;
protected $type;
* @param string $refn
* @return Refn
public function setRefn($refn = '')
$this->refn = $refn;
return $this;
}
* @return string
public function getRefn()
return $this->refn;
* @param string $type
public function setType($type = '')
$this->type = $type;
public function getType()
return $this->type;