MIR1605
DuplicateEnum
An enum with the same name is declared more than once.
Example
Section titled “Example”<?phpenum E {}enum E {} // DuplicateEnumHow to fix
Section titled “How to fix”Remove the duplicate declaration.
MIR1605
An enum with the same name is declared more than once.
<?phpenum E {}enum E {} // DuplicateEnumRemove the duplicate declaration.