By borisson_ on
Change record status:
Draft (View all draft change records)
Project:
Issue links:
Description:
To ensure consistency with other control structures, a space is now required between the match keyword and the opening parantheses.
// No longer valid:
$result = match($value) {
5 => 'win',
default => 'loss',
};
// Newly prescribed style:
$result = match ($value) {
5 => 'win',
default => 'loss',
};
Impacts:
Module developers