From 13abd6f3a37322f885d85df150e105d27ad81f8d Mon Sep 17 00:00:00 2001 From: Greg Roach Date: Fri, 23 Dec 2016 21:15:42 +0000 Subject: Code style - short array syntax --- app/Census/CensusOfWales1881.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Census/CensusOfWales1881.php') diff --git a/app/Census/CensusOfWales1881.php b/app/Census/CensusOfWales1881.php index b4fe9586a5..239e264856 100644 --- a/app/Census/CensusOfWales1881.php +++ b/app/Census/CensusOfWales1881.php @@ -34,7 +34,7 @@ class CensusOfWales1881 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 CensusOfWales1881 extends CensusOfWales implements CensusInterface { new CensusColumnOccupation($this, 'Occupation', 'Rank, profession or occupation'), new CensusColumnBirthPlace($this, 'Birthplace', 'Where born'), new CensusColumnNull($this, 'Infirm', 'Whether deaf-and-dumb, blind, imbecile, idiot or lunatic'), - ); + ]; } } -- cgit v1.3