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\Head;
class Gedc extends \Gedcom\Record
{
protected $_vers;
protected $_form;
* @return Gedc/version
Gedc/version
0
public function getVersion()
return $this->_vers;
}
* @param Gedc/version
public function setVersion($vers = [])
$this->_vers = $vers;
* @return Gedc/form
Gedc/form
public function getForm()
return $this->_form;
public function setForm($form = [])
$this->_form = $form;