Merge pull request #44 from jonnybarnes/analysis-qJbNaD

Apply fixes from StyleCI
This commit is contained in:
Jonny Barnes 2017-02-16 15:49:31 +00:00 committed by GitHub
commit db44423c2e
2 changed files with 1 additions and 2 deletions

View file

@ -5,7 +5,6 @@ namespace App\Http\Controllers;
use IndieAuth\Client; use IndieAuth\Client;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use App\Services\TokenService; use App\Services\TokenService;
use Illuminate\Cookie\CookieJar;
use App\Services\IndieAuthService; use App\Services\IndieAuthService;
class IndieAuthController extends Controller class IndieAuthController extends Controller

View file

@ -166,7 +166,7 @@ class MicropubController extends Controller
return response()->json([ return response()->json([
'response' => 'error', 'response' => 'error',
'error' => 'no_token', 'error' => 'no_token',
'error_description' => 'No token provided with request' 'error_description' => 'No token provided with request',
], 400); ], 400);
} }
} }