mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
Merge pull request #346 from phanan/analysis-qo7Mv7
Applied fixes from StyleCI
This commit is contained in:
commit
a17264acb7
3 changed files with 1 additions and 3 deletions
|
@ -5,7 +5,6 @@ namespace App\Http\Controllers\API;
|
|||
use App\Http\Requests\API\UserLoginRequest;
|
||||
use App\Models\User;
|
||||
use Exception;
|
||||
use Hash;
|
||||
use JWTAuth;
|
||||
use Log;
|
||||
use Tymon\JWTAuth\Exceptions\JWTException;
|
||||
|
|
|
@ -10,7 +10,6 @@ Route::get('/♫', function () {
|
|||
});
|
||||
|
||||
Route::group(['prefix' => 'api', 'namespace' => 'API'], function () {
|
||||
|
||||
Route::post('me', 'AuthController@login');
|
||||
Route::delete('me', 'AuthController@logout');
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
use App\Models\User;
|
||||
use App\Models\Setting;
|
||||
use App\Models\User;
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||
|
||||
|
|
Loading…
Reference in a new issue