laravel-ide-helper
laravel-ide-helper copied to clipboard
PHPStan annotations for models are dropped
PHPStan annotations (or any other description) for models are dropped, for example:
/**
* Some class.
*
* @implements \App\Contracts\Models\SomeContract<...>
*
* @property int $id
* [...]
after:
/**
* Some class.
*
* @property int $id
* [...]
Is there any way to preserve these entries? These are critical from a static analysis point of view.