mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Apply fixes from StyleCI (#634)
This commit is contained in:
parent
f827c63819
commit
e40a57c0cd
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ class BatchLikeController extends Controller
|
|||
*
|
||||
* @return JsonResponse
|
||||
*/
|
||||
function store(BatchInteractionRequest $request)
|
||||
public function store(BatchInteractionRequest $request)
|
||||
{
|
||||
return response()->json(Interaction::batchLike((array) $request->songs, $request->user()));
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@ class SongTest extends TestCase
|
|||
/** @test */
|
||||
public function it_does_not_scrobble_if_the_user_is_not_connected_to_lastfm()
|
||||
{
|
||||
Lastfm::shouldNotReceive('scrobble');
|
||||
Lastfm::shouldNotReceive('scrobble');
|
||||
|
||||
// Given there's a song
|
||||
/** @var Song $song */
|
||||
|
|
Loading…
Reference in a new issue