DuplicateMethod

March 20, 2020 ยท View on GitHub

Emitted when a method is defined twice

<?php

class A {
    public function foo() {}
    public function foo() {}
}