timeweb/phpstan-enum

Add NoDuplicateEnumValue rule

jdecool opened this issue · 0 comments

it could be interesting to add rule that check the enum values are unique.

class MyEnum extends Enum
{
    public const FOO = 1;
    public const BAR = 2;
}