Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jbenner-radham/bd75e9e067608b0c96a5 to your computer and use it in GitHub Desktop.
Save jbenner-radham/bd75e9e067608b0c96a5 to your computer and use it in GitHub Desktop.
The original vendor provided version of `App\Exceptions\Handler::render()` that ships with Laravel 5.2.
<?php
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $e
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)
{
return parent::render($request, $e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment