MIR1603
DuplicateInterface
An interface with the same name is declared more than once.
Example
Section titled “Example”<?phpinterface I {}interface I {} // DuplicateInterfaceHow to fix
Section titled “How to fix”Remove the duplicate declaration.