mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Merge pull request #119 from phanan/analysis-zYeMoz
Applied fixes from StyleCI
This commit is contained in:
commit
00922e817c
5 changed files with 10 additions and 10 deletions
|
@ -41,7 +41,7 @@ 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
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
|
||||
class AddPreferencesToUsersTable extends Migration
|
||||
{
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||
use App\Services\Lastfm;
|
||||
use GuzzleHttp\Client;
|
||||
use GuzzleHttp\Psr7\Response;
|
||||
use App\Services\Lastfm;
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||
|
||||
class LastfmTest extends TestCase
|
||||
{
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||
use App\Services\RESTfulService;
|
||||
use GuzzleHttp\Client;
|
||||
use GuzzleHttp\Psr7\Response;
|
||||
use App\Services\RESTfulService;
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||
|
||||
class RESTfulAPIServiceTest extends TestCase
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue