Skip to content
Snippets Groups Projects
Commit 1dd15e5f authored by Tibo's avatar Tibo
Browse files

upgrade to laravel 7.x

parent 99d08e6c
No related branches found
No related tags found
No related merge requests found
Pipeline #18582 failed
......@@ -2,7 +2,7 @@
namespace App\Exceptions;
use Exception;
use Throwable;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
......@@ -34,7 +34,7 @@ class Handler extends ExceptionHandler
* @param \Exception $exception
* @return void
*/
public function report(Exception $exception)
public function report(Throwable $exception)
{
parent::report($exception);
}
......@@ -45,7 +45,7 @@ class Handler extends ExceptionHandler
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
*/
public function render($request, Exception $exception)
public function render($request, Throwable $exception)
{
return parent::render($request, $exception);
}
......
This diff is collapsed.
......@@ -164,7 +164,7 @@ return [
|
*/
'secure' => env('SESSION_SECURE_COOKIE', false),
'secure' => env('SESSION_SECURE_COOKIE', null),
/*
|--------------------------------------------------------------------------
......
......@@ -4,7 +4,6 @@
"requires": true,
"packages": {
"": {
"name": "app",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"chart.js": "^2.9.3",
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment