From bd8b3ad2a7b62a4f109cdd07c569276578441087 Mon Sep 17 00:00:00 2001 From: Can Vural Date: Mon, 25 Oct 2021 18:28:52 +0200 Subject: [PATCH] PHPDoc types should be covariant with the parent type --- 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 c18c43cc123..3ca4b3458fa 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',