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 PhpGedcom\Record;
use PhpGedcom\Record;
* Class Caln.
class Caln extends Record
{
* @var string
protected $caln;
protected $medi;
* @param string $caln
* @return Caln
public function setCaln($caln = '')
$this->caln = $caln;
return $this;
}
* @return string
public function getCaln()
return $this->caln;
* @param string $medi
public function setMedi($medi = '')
$this->medi = $medi;
public function getMedi()
return $this->medi;