Skip to content

MIR1603

DuplicateInterface

An interface with the same name is declared more than once.

<?php
interface I {}
interface I {} // DuplicateInterface

Remove the duplicate declaration.