mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 17:27:28 +01:00
20 lines
213 B
Markdown
20 lines
213 B
Markdown
|
# DuplicateProperty
|
||
|
|
||
|
Emitted when a class property is defined twice
|
||
|
|
||
|
```php
|
||
|
<?php
|
||
|
|
||
|
class Foo
|
||
|
{
|
||
|
public int $foo;
|
||
|
public string $foo;
|
||
|
}
|
||
|
|
||
|
class Bar
|
||
|
{
|
||
|
public int $bar;
|
||
|
public static string $bar;
|
||
|
}
|
||
|
```
|