Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class CensusOfSlovakia extends Census implements CensusPlaceInterface |
||
24 | { |
||
25 | /** |
||
26 | * All available censuses for this census place. |
||
27 | * |
||
28 | * @return CensusInterface[] |
||
29 | */ |
||
30 | public function allCensusDates(): array |
||
31 | { |
||
32 | return [ |
||
33 | new CensusOfSlovakia1869(), |
||
34 | ]; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Where did this census occur, in GEDCOM format. |
||
39 | * |
||
40 | * @return string |
||
41 | */ |
||
42 | public function censusPlace(): string |
||
45 | } |
||
46 | } |
||
47 |