From 1c03cb4cecd5ecffb16115d73fcd7a38da4e0c76 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 16 Feb 2017 15:45:14 +0000 Subject: [PATCH] Apply fixes from StyleCI --- app/Http/Controllers/IndieAuthController.php | 1 - app/Http/Controllers/MicropubController.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Http/Controllers/IndieAuthController.php b/app/Http/Controllers/IndieAuthController.php index a66becca..3086ccda 100644 --- a/app/Http/Controllers/IndieAuthController.php +++ b/app/Http/Controllers/IndieAuthController.php @@ -5,7 +5,6 @@ namespace App\Http\Controllers; use IndieAuth\Client; use Illuminate\Http\Request; use App\Services\TokenService; -use Illuminate\Cookie\CookieJar; use App\Services\IndieAuthService; class IndieAuthController extends Controller diff --git a/app/Http/Controllers/MicropubController.php b/app/Http/Controllers/MicropubController.php index ddfebfc0..e934970e 100644 --- a/app/Http/Controllers/MicropubController.php +++ b/app/Http/Controllers/MicropubController.php @@ -166,7 +166,7 @@ class MicropubController extends Controller return response()->json([ 'response' => 'error', 'error' => 'no_token', - 'error_description' => 'No token provided with request' + 'error_description' => 'No token provided with request', ], 400); } }