laravel-ide-helper icon indicating copy to clipboard operation
laravel-ide-helper copied to clipboard

PHPStan annotations for models are dropped

Open bbprojectnet opened this issue 4 months ago • 1 comments

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.

bbprojectnet avatar Oct 19 '24 13:10 bbprojectnet