@return HasMany */
()
| 29 | |
| 30 | /** @return HasMany<BlogPost, $this> */ |
| 31 | public function posts(): mixed { return $this->hasMany(BlogPost::class); } |
| 32 | |
| 33 | /** @return HasOne<AuthorProfile, $this> */ |
| 34 | public function profile(): mixed { return $this->hasOne(AuthorProfile::class); } |
no test coverage detected