| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 20 | class Map extends \Gedcom\Record |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string place_latitude |
||
| 24 | */ |
||
| 25 | protected $lati; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string place_longitude |
||
| 29 | */ |
||
| 30 | protected $long; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $lati |
||
| 34 | * |
||
| 35 | * @return Map |
||
| 36 | */ |
||
| 37 | public function setLati($lati = '') |
||
| 38 | { |
||
| 39 | $this->lati = $lati; |
||
| 40 | |||
| 41 | return $this; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param string $long |
||
| 46 | * |
||
| 47 | * @return Map |
||
| 48 | */ |
||
| 49 | public function setLong($long = '') |
||
| 54 | } |
||
| 55 | |||
| 57 |