'New South Wales', self::VIC => 'Victoria', self::QLD => 'Queensland', self::SA => 'South Australia', self::WA => 'Western Australia', self::TAS => 'Tasmania', self::NT => 'Northern Territory', self::ACT => 'Australian Capital Territory', }; } public function abbreviation(): string { return match ($this) { self::NSW => 'NSW', self::VIC => 'VIC', self::QLD => 'QLD', self::SA => 'SA', self::WA => 'WA', self::TAS => 'TAS', self::NT => 'NT', self::ACT => 'ACT', }; } }