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