X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/a6633642232efd164d4708967ab59e498fbff896..refs/pull/3365/head:/app/Entities/Models/Bookshelf.php diff --git a/app/Entities/Models/Bookshelf.php b/app/Entities/Models/Bookshelf.php index 8ffd06d2e..b9ebab92e 100644 --- a/app/Entities/Models/Bookshelf.php +++ b/app/Entities/Models/Bookshelf.php @@ -1,14 +1,19 @@ -books()->visible(); + return $this->books()->scopes('visible'); } /** @@ -44,8 +50,10 @@ class Bookshelf extends Entity implements HasCoverImage /** * Returns BookShelf cover image, if cover does not exists return default cover image. - * @param int $width - Width of the image + * + * @param int $width - Width of the image * @param int $height - Height of the image + * * @return string */ public function getBookCover($width = 440, $height = 250) @@ -61,11 +69,12 @@ class Bookshelf extends Entity implements HasCoverImage } catch (\Exception $err) { $cover = $default; } + return $cover; } /** - * Get the cover image of the shelf + * Get the cover image of the shelf. */ public function cover(): BelongsTo { @@ -82,7 +91,9 @@ class Bookshelf extends Entity implements HasCoverImage /** * Check if this shelf contains the given book. + * * @param Book $book + * * @return bool */ public function contains(Book $book): bool @@ -92,6 +103,7 @@ class Bookshelf extends Entity implements HasCoverImage /** * Add a book to the end of this shelf. + * * @param Book $book */ public function appendBook(Book $book)