1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Indentation correction.

This commit is contained in:
Nilesh Deepak
2017-07-07 17:06:08 +05:30
parent 144a6e469d
commit d84315fff8
2 changed files with 15 additions and 15 deletions

View File

@ -18,7 +18,7 @@ class Book extends Entity
return baseUrl('/books/' . urlencode($this->slug));
}
public function getBookCover($size = 120)
public function getBookCover($size = 120)
{
$default = baseUrl('/default.png');
$image = $this->image;
@ -32,7 +32,7 @@ public function getBookCover($size = 120)
return $cover;
}
public function cover()
public function cover()
{
return $this->belongsTo(Image::class, 'image');
}