The PHPDoc generation for models (`php artisan ide-helper:models`) generates the following: ``` * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|User newQuery() ``` However, this violates the [laravel_phpdoc_separation](https://docs.styleci.io/fixers#laravel_phpdoc_separation) StyleCI rule, which is a default rule for the [StyleCI Laravel preset](https://docs.styleci.io/presets#laravel) (which is used as a [default for Laravel itself](https://github.com/laravel/laravel/blob/8.x/.styleci.yml)). There should be a linebreak between the `@property` declarations and `@method` declarations, like this: ``` * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|User newQuery() ```