Apply fixes from StyleCI (#786)

This commit is contained in:
Phan An 2018-08-22 22:25:23 +02:00 committed by GitHub
parent a340a64748
commit 6a2a2263fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -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;

View file

@ -119,7 +119,7 @@ class InteractionService
{
return $this->interaction->where([
'user_id' => $user->id,
'like' => true
'like' => true,
])
->with('song')
->get()