| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class Birt extends Even |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $famc; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $famc |
||
| 29 | * |
||
| 30 | * @return Birt |
||
| 31 | */ |
||
| 32 | public function setFamc($famc = '') |
||
| 33 | { |
||
| 34 | $this->famc = $famc; |
||
| 35 | |||
| 36 | return $this; |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function getFamc() |
||
| 45 | } |
||
| 46 | } |
||
| 47 |