DuplicateProperty
October 8, 2023 ยท View on GitHub
Emitted when a class property is defined twice
<?php
class Foo
{
public int $foo;
public string $foo;
}
class Bar
{
public int $bar;
public static string $bar;
}
October 8, 2023 ยท View on GitHub
Emitted when a class property is defined twice
<?php
class Foo
{
public int $foo;
public string $foo;
}
class Bar
{
public int $bar;
public static string $bar;
}