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 Obje extends \Gedcom\Record implements Noteable
{
protected $_id;
protected $_file = [];
protected $_rin;
protected $_chan;
protected $_refn = [];
protected $_note = [];
protected $_sour = [];
public function addRefn($refn = [])
$this->_refn[] = $refn;
}
public function addNote($note = [])
$this->_note[] = $note;
public function addFile($file)
$this->_file[] = $file;
public function addSour($sour)
$this->_sour[] = $sour;