Merge pull request #48 from jonnybarnes/analysis-X0WbkL

Apply fixes from StyleCI
This commit is contained in:
Jonny Barnes 2017-03-18 21:19:01 +00:00 committed by GitHub
commit d4a53329e7
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -2,9 +2,9 @@
namespace App\Http\Controllers;
use App\{Note, Tag};
use Twitter;
use HTMLPurifier;
use App\{Note, Tag};
use GuzzleHttp\Client;
use HTMLPurifier_Config;
use Illuminate\Http\Request;