| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | class CountOfMarriages extends AbstractElement |
||
| 31 | { |
||
| 32 | protected const SUBTAGS = [ |
||
| 33 | 'NOTE' => '0:M', |
||
| 34 | 'OBJE' => '0:M', |
||
| 35 | 'SOUR' => '0:M', |
||
| 36 | 'RESN' => '0:1', |
||
| 37 | ]; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Display the value of this type of element. |
||
| 41 | * |
||
| 42 | * @param string $value |
||
| 43 | * @param Tree $tree |
||
| 44 | * |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function value(string $value, Tree $tree): string |
||
| 52 |