|
@@ -29,7 +29,7 @@ class Handler extends ExceptionHandler
|
|
|
*
|
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
|
*
|
|
|
- * @param \Throwable $e
|
|
|
+ * @param \Exception $e
|
|
|
* @return void
|
|
|
*/
|
|
|
public function report(Exception $e)
|
|
@@ -41,7 +41,7 @@ class Handler extends ExceptionHandler
|
|
|
* Render an exception into an HTTP response.
|
|
|
*
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
- * @param \Throwable $e
|
|
|
+ * @param \Exception $e
|
|
|
* @return \Illuminate\Http\Response
|
|
|
*/
|
|
|
public function render($request, Exception $e)
|