Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
30 | class ChangeDate extends DateValueToday |
||
31 | { |
||
32 | protected const SUBTAGS = [ |
||
33 | 'TIME' => '1:1', |
||
34 | ]; |
||
35 | |||
36 | /** |
||
37 | * Escape @ signs in a GEDCOM export. |
||
38 | * This value should not include calendar escapes, so override special logic for date fields. |
||
39 | * |
||
40 | * @param string $value |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | public function escape(string $value): string |
||
49 |