diff --git a/app/Http/Controllers/API/SongController.php b/app/Http/Controllers/API/SongController.php index 0eb2b5f6..eb79fccd 100644 --- a/app/Http/Controllers/API/SongController.php +++ b/app/Http/Controllers/API/SongController.php @@ -41,9 +41,9 @@ class SongController extends Controller } /** - * Get extra information about a song via Last.fm + * Get extra information about a song via Last.fm. * - * @param string $id + * @param string $id * * @return \Illuminate\Http\JsonResponse */ diff --git a/app/Models/Album.php b/app/Models/Album.php index 03f61723..61d64e67 100644 --- a/app/Models/Album.php +++ b/app/Models/Album.php @@ -106,7 +106,7 @@ class Album extends Model * Write a cover image file with binary data and update the Album with the new cover file. * * @param string $binaryData - * @param string $extension The file extension + * @param string $extension The file extension */ private function writeCoverFile($binaryData, $extension) { diff --git a/database/migrations/2015_12_18_072523_add_preferences_to_users_table.php b/database/migrations/2015_12_18_072523_add_preferences_to_users_table.php index 91225429..7c03b63b 100644 --- a/database/migrations/2015_12_18_072523_add_preferences_to_users_table.php +++ b/database/migrations/2015_12_18_072523_add_preferences_to_users_table.php @@ -1,7 +1,7 @@