Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 213 Bytes

DuplicateProperty.md

File metadata and controls

19 lines (15 loc) · 213 Bytes

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