1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 10:38:49 +01:00
psalm/docs/running_psalm/issues/DuplicateProperty.md
2023-10-09 01:13:13 +02:00

213 B

DuplicateProperty

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;
}