MIR1604
DuplicateTrait
A trait with the same name is declared more than once.
Example
Section titled “Example”<?phptrait T {}trait T {} // DuplicateTraitHow to fix
Section titled “How to fix”Remove the duplicate declaration.
MIR1604
A trait with the same name is declared more than once.
<?phptrait T {}trait T {} // DuplicateTraitRemove the duplicate declaration.