Skip to content

Instantly share code, notes, and snippets.

@unstoppablecarl
Created June 6, 2016 14:54
Show Gist options
  • Save unstoppablecarl/d3ad3b1a99ee15377cba049556a5628a to your computer and use it in GitHub Desktop.
Save unstoppablecarl/d3ad3b1a99ee15377cba049556a5628a to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Closure;
class ValidJson {
/**
* Handle an incoming request.
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next) {
json_decode($request->getContent());
if (json_last_error() != JSON_ERROR_NONE) {
return response()->json('Request must be valid json', 422);
}
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment