summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfWales1851.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Census/CensusOfWales1851.php')
-rw-r--r--app/Census/CensusOfWales1851.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Census/CensusOfWales1851.php b/app/Census/CensusOfWales1851.php
index 79c41a942b..2244503787 100644
--- a/app/Census/CensusOfWales1851.php
+++ b/app/Census/CensusOfWales1851.php
@@ -34,7 +34,7 @@ class CensusOfWales1851 extends CensusOfWales implements CensusInterface {
* @return CensusColumnInterface[]
*/
public function columns() {
- return array(
+ return [
new CensusColumnFullName($this, 'Name', 'Name and surname'),
new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'),
new CensusColumnConditionEnglish($this, 'Condition', 'Condition'),
@@ -43,6 +43,6 @@ class CensusOfWales1851 extends CensusOfWales implements CensusInterface {
new CensusColumnOccupation($this, 'Occupation', 'Rank, profession or occupation'),
new CensusColumnBirthPlace($this, 'Birthplace', 'Where born'),
new CensusColumnNull($this, 'Infirm', 'Whether blind or deaf-and-dumb'),
- );
+ ];
}
}