4 namespace BookStack\Entities;
6 use Illuminate\Database\Eloquent\Relations\BelongsTo;
8 interface HasCoverImage
12 * Get the cover image for this item.
14 public function cover(): BelongsTo;
17 * Get the type of the image model that is used when storing a cover image.
19 public function coverImageTypeKey(): string;