diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-12-23 21:15:42 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-12-23 21:15:42 +0000 |
| commit | 13abd6f3a37322f885d85df150e105d27ad81f8d (patch) | |
| tree | f023015b458c95273afe5876246adf141de169ca /app/Census/RegisterOfEngland1939.php | |
| parent | 2c55bacfbfed3c49d3f2ac181fb519d24ffe2803 (diff) | |
| download | webtrees-13abd6f3a37322f885d85df150e105d27ad81f8d.tar.gz webtrees-13abd6f3a37322f885d85df150e105d27ad81f8d.tar.bz2 webtrees-13abd6f3a37322f885d85df150e105d27ad81f8d.zip | |
Code style - short array syntax
Diffstat (limited to 'app/Census/RegisterOfEngland1939.php')
| -rw-r--r-- | app/Census/RegisterOfEngland1939.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Census/RegisterOfEngland1939.php b/app/Census/RegisterOfEngland1939.php index 578c993f13..07a6153eb2 100644 --- a/app/Census/RegisterOfEngland1939.php +++ b/app/Census/RegisterOfEngland1939.php @@ -34,7 +34,7 @@ class RegisterOfEngland1939 extends CensusOfEngland implements CensusInterface { * @return CensusColumnInterface[] */ public function columns() { - return array( + return [ new CensusColumnNull($this, 'Schedule', 'Schedule Number'), new CensusColumnNull($this, 'SubNum', 'Schedule Sub Number'), new CensusColumnSurnameGivenNames($this, 'Name', 'Surname & other names'), @@ -43,6 +43,6 @@ class RegisterOfEngland1939 extends CensusOfEngland implements CensusInterface { new CensusColumnBirthDayMonthSlashYear($this, 'DOB', 'Date of birth'), new CensusColumnConditionEnglish($this, 'MC', 'Marital Condition - Married, Single, Unmarried, Widowed or Divorced'), new CensusColumnOccupation($this, 'Occupation', 'Occupation'), - ); + ]; } } |
