Change $exception to $e for consistency

This commit is contained in:
Alex Tselegidis 2022-06-20 12:31:52 +03:00
parent 658ac78d8f
commit 14ae6b24fa
1 changed files with 4 additions and 4 deletions

View File

@ -146,14 +146,14 @@ if ( ! function_exists('json_exception'))
* *
* json_exception($exception); // Add this in a catch block to return the exception information. * json_exception($exception); // Add this in a catch block to return the exception information.
* *
* @param Throwable $exception * @param Throwable $e
*/ */
function json_exception(Throwable $exception) function json_exception(Throwable $e)
{ {
json_response([ json_response([
'success' => FALSE, 'success' => FALSE,
'message' => $exception->getMessage(), 'message' => $e->getMessage(),
'trace' => config('debug') ? $exception->getTrace() : [] 'trace' => config('debug') ? $e->getTrace() : []
], 500); ], 500);
} }
} }