Skip to content

MIR1606

DuplicateFunction

A function with the same name is declared more than once.

<?php
function f(){}
function f(){} // DuplicateFunction

Rename or remove the duplicate declaration.