In v2.11.0, model like this ```php class Job extends Model { protected $fillable = [ 'status', ]; protected $casts = [ 'status' => JobStatus::class, ]; [...] ``` would generate phpdoc `@property JobStatus $status`, but since v2.12.0 it keeps generating `@property mixed $status` Exact command I'm using is `php artisan ide-helper:models --write --smart-reset` It was fine in v2.11.0, currently using this exact version locked