We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cdca8c1
As described in #39 and implemented in #79, with this release this:
return match ($i) { 1 => 1, 2 => 3, default => 0 };
will be transformed to this:
return match ($i) { 1 => 1, 2 => 3, default => 0, };