Passed
Branch master (380e00)
by Greg
20:17
created

CensusOfDenmark::censusPlace()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * webtrees: online genealogy
4
 * Copyright (C) 2017 webtrees development team
5
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
 * GNU General Public License for more details.
13
 * You should have received a copy of the GNU General Public License
14
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15
 */
16
17
namespace Fisharebest\Webtrees\Census;
18
19
/**
20
 * Definitions for a census
21
 */
22
class CensusOfDenmark extends Census implements CensusPlaceInterface {
23
	/**
24
	 * All available censuses for this census place.
25
	 *
26
	 * @return CensusInterface[]
0 ignored issues
show
Documentation introduced by
Consider making the return type a bit more specific; maybe use array<CensusOfDenmark178...30|CensusOfDenmark1940>.

This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.

Loading history...
27
	 */
28
	public function allCensusDates() {
29
		return [
30
			new CensusOfDenmark1787(),
31
			new CensusOfDenmark1801(),
32
			new CensusOfDenmark1803(),
33
			new CensusOfDenmark1834(),
34
			new CensusOfDenmark1835(),
35
			new CensusOfDenmark1840(),
36
			new CensusOfDenmark1845(),
37
			new CensusOfDenmark1850(),
38
			new CensusOfDenmark1855(),
39
			new CensusOfDenmark1860(),
40
			new CensusOfDenmark1870(),
41
			new CensusOfDenmark1880(),
42
			new CensusOfDenmark1885(),
43
			new CensusOfDenmark1890(),
44
			new CensusOfDenmark1901(),
45
			new CensusOfDenmark1906(),
46
			new CensusOfDenmark1911(),
47
			new CensusOfDenmark1916(),
48
			new CensusOfDenmark1921(),
49
			new CensusOfDenmark1925(),
50
			new CensusOfDenmark1930(),
51
			new CensusOfDenmark1940(),
52
		];
53
	}
54
55
	/**
56
	 * Where did this census occur, in GEDCOM format.
57
	 *
58
	 * @return string
59
	 */
60
	public function censusPlace() {
61
		return 'Danmark';
62
	}
63
}
64