| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | class SourceData extends AbstractElement |
||
| 28 | { |
||
| 29 | protected const SUBTAGS = [ |
||
| 30 | 'DATE' => '0:1', |
||
| 31 | 'TEXT' => '0:M', |
||
| 32 | ]; |
||
| 33 | |||
| 34 | protected const ABRIDGED_SUBTAGS = [ |
||
| 35 | 'TEXT' => '0:M', |
||
| 36 | ]; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param Tree $tree |
||
| 40 | * |
||
| 41 | * @return array<string,string> |
||
| 42 | */ |
||
| 43 | public function subtags(Tree $tree): array |
||
| 52 |