From 15427830022447443e63991c0e9fc0e3099dbcb9 Mon Sep 17 00:00:00 2001 From: Can Vural Date: Mon, 25 Oct 2021 20:16:13 +0200 Subject: [PATCH] PHPDoc types should be covariant with the parent type (#5714) --- app/Exceptions/Handler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index c18c43cc..3ca4b345 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -10,7 +10,7 @@ class Handler extends ExceptionHandler /** * A list of the exception types that are not reported. * - * @var array + * @var string[] */ protected $dontReport = [ // @@ -19,7 +19,7 @@ class Handler extends ExceptionHandler /** * A list of the inputs that are never flashed for validation exceptions. * - * @var array + * @var string[] */ protected $dontFlash = [ 'current_password',