Alexey
Alexey
already fixed https://github.com/swagger-api/swagger-ui/releases/tag/v5.16.1
> This should be: > > ``` > /** > * @return BelongsTo > */ > public function user(): BelongsTo > { > return $this->belongsTo(User::class); > } > ``` Same...
``` /** * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class); } ``` There is no error if I add `covariant`
> What does the full Model look like? By any chance are they `final`? Yes, all my models are `final`