mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
0f8ef45110
Fixes vimeo/psalm#6472
179 B
179 B
NoEnumProperties
Emitted when there a property defined on an enum, as PHP does not allow user-defined properties on enums.
<?php
enum Status {
public $prop;
}