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
* @package php-gedcom
* @license MIT
* @link http://github.com/mrkrstphr/php-gedcom
*/
namespace PhpGedcom\Record;
use PhpGedcom\Record;
* Class Addr
* @package PhpGedcom\Record
class Addr extends Record
{
* @var string
protected $addr;
protected $adr1;
protected $adr2;
protected $city;
protected $stae;
protected $post;
protected $ctry;
* @param string $addr
* @return Addr
public function setAddr($addr = '')
$this->addr = $addr;
return $this;
}
* @return string
public function getAddr()
return $this->addr;
* @param string $adr1
public function setAdr1($adr1 = '')
$this->adr1 = $adr1;
public function getAdr1()
return $this->adr1;
* @param string $adr2
public function setAdr2($adr2 = '')
$this->adr2 = $adr2;
public function getAdr2()
return $this->adr2;
* @param string $city
public function setCity($city = '')
$this->city = $city;
public function getCity()
return $this->city;
* @param string $stae
public function setStae($stae = '')
$this->stae = $stae;
public function getStae()
return $this->stae;
* @param string $post
public function setPost($post = '')
$this->post = $post;
public function getPost()
return $this->post;
* @param string $ctry
public function setCtry($ctry = '')
$this->ctry = $ctry;
public function getCtry()
return $this->ctry;