Skip to content

Commit

Permalink
Apply fixes from StyleCI (#20174)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored Jul 19, 2017
1 parent 0590a03 commit a201a7f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ protected function invalidJson($request, ValidationException $exception)
{
return response()->json([
'message' => $exception->getMessage(),
'errors' => $exception->errors()
'errors' => $exception->errors(),
], 422);
}

Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Foundation/Http/FormRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Illuminate\Foundation\Http;

use Illuminate\Http\Request;
use Illuminate\Http\JsonResponse;
use Illuminate\Routing\Redirector;
use Illuminate\Contracts\Container\Container;
use Illuminate\Contracts\Validation\Validator;
Expand Down

0 comments on commit a201a7f

Please sign in to comment.