Skip to content

DuplicateMethod

メソッドが2回定義された場合に発生します。

<?php
class A {
    public function foo() {}
    public function foo() {}
}

ユーザーノート