MIR1606
DuplicateFunction
A function with the same name is declared more than once.
Example
Section titled “Example”<?phpfunction f(){}function f(){} // DuplicateFunctionHow to fix
Section titled “How to fix”Rename or remove the duplicate declaration.