Apply fixes from StyleCI (#634)

This commit is contained in:
Phan An 2017-08-06 10:44:17 +01:00 committed by GitHub
parent f827c63819
commit e40a57c0cd
2 changed files with 2 additions and 2 deletions

View file

@ -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()));
}

View file

@ -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 */