summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfScotland1861.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-12-23 21:15:42 +0000
committerGreg Roach <fisharebest@gmail.com>2016-12-23 21:15:42 +0000
commit13abd6f3a37322f885d85df150e105d27ad81f8d (patch)
treef023015b458c95273afe5876246adf141de169ca /app/Census/CensusOfScotland1861.php
parent2c55bacfbfed3c49d3f2ac181fb519d24ffe2803 (diff)
downloadwebtrees-13abd6f3a37322f885d85df150e105d27ad81f8d.tar.gz
webtrees-13abd6f3a37322f885d85df150e105d27ad81f8d.tar.bz2
webtrees-13abd6f3a37322f885d85df150e105d27ad81f8d.zip
Code style - short array syntax
Diffstat (limited to 'app/Census/CensusOfScotland1861.php')
-rw-r--r--app/Census/CensusOfScotland1861.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Census/CensusOfScotland1861.php b/app/Census/CensusOfScotland1861.php
index c942e60ee3..2b32382941 100644
--- a/app/Census/CensusOfScotland1861.php
+++ b/app/Census/CensusOfScotland1861.php
@@ -34,7 +34,7 @@ class CensusOfScotland1861 extends CensusOfScotland 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'),
@@ -44,6 +44,6 @@ class CensusOfScotland1861 extends CensusOfScotland implements CensusInterface {
new CensusColumnBirthPlace($this, 'Birthplace', 'Where born'),
new CensusColumnNull($this, 'Infirm', 'Whether blind or deaf-and-dumb'),
new CensusColumnNull($this, 'School', 'Number of children between 5 and 13 attending school'),
- );
+ ];
}
}