mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Apply fixes from StyleCI (#580)
This commit is contained in:
parent
15eb5a1596
commit
220cb45cdb
5 changed files with 5 additions and 10 deletions
|
@ -3,16 +3,15 @@
|
|||
namespace App\Http\Controllers\API;
|
||||
|
||||
use App\Application;
|
||||
use App\Models\Interaction;
|
||||
use App\Models\Artist;
|
||||
use App\Models\Album;
|
||||
use App\Models\Song;
|
||||
use App\Models\Artist;
|
||||
use App\Models\Interaction;
|
||||
use App\Models\Playlist;
|
||||
use App\Models\Setting;
|
||||
use App\Models\Song;
|
||||
use App\Models\User;
|
||||
use iTunes;
|
||||
use Lastfm;
|
||||
use MediaCache;
|
||||
use YouTube;
|
||||
|
||||
class DataController extends Controller
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
namespace App\Http\Controllers\API;
|
||||
|
||||
use App\Http\Requests\API\SongUpdateRequest;
|
||||
use App\Models\Song;
|
||||
use App\Services\Streamers\PHPStreamer;
|
||||
use App\Services\Streamers\S3Streamer;
|
||||
use App\Services\Streamers\TranscodingStreamer;
|
||||
use App\Services\Streamers\XAccelRedirectStreamer;
|
||||
use App\Services\Streamers\XSendFileStreamer;
|
||||
use App\Models\Song;
|
||||
use YouTube;
|
||||
|
||||
class SongController extends Controller
|
||||
|
|
|
@ -9,7 +9,6 @@ use Aws\AwsClient;
|
|||
use Cache;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Lastfm;
|
||||
use Media;
|
||||
use YouTube;
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
<?php
|
||||
|
||||
use App\Models\Song;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CopyArtistToContributingArtist extends Migration
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class DropIsComplicationFromAlbums extends Migration
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue