mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Apply fixes from StyleCI (#786)
This commit is contained in:
parent
a340a64748
commit
6a2a2263fa
2 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@
|
|||
namespace App\Http\Controllers\API\Download;
|
||||
|
||||
use App\Http\Requests\API\Download\Request;
|
||||
use App\Models\Song;
|
||||
use App\Services\DownloadService;
|
||||
use App\Services\InteractionService;
|
||||
use Symfony\Component\HttpFoundation\BinaryFileResponse;
|
||||
|
|
|
@ -119,7 +119,7 @@ class InteractionService
|
|||
{
|
||||
return $this->interaction->where([
|
||||
'user_id' => $user->id,
|
||||
'like' => true
|
||||
'like' => true,
|
||||
])
|
||||
->with('song')
|
||||
->get()
|
||||
|
|
Loading…
Reference in a new issue