I have all trailing comma rules enabled but i noticed that these rules are not enforced in a match expression. Is this expected behaviour?
Currently this will not throw an error with all trialing comma rules enabled
match ($this) {
self::bread => food::bread,
self::pizza => food::pizza,
default => throw new LogicException()
};