Skip to content

DuplicateProperty

クラスのプロパティが2回定義された場合に発生します。

<?php
class Foo {
    public int $foo;
    public string $foo;
}

class Bar {
    public int $bar;
    public static string $bar;
}

ユーザーノート