/**
* A list of the exception types that are not reported.
*
- * @var array
+ * @var array<int, class-string<\Throwable>>
*/
protected $dontReport = [
NotFoundException::class,
];
/**
- * A list of the inputs that are never flashed for validation exceptions.
+ * A list of the inputs that are never flashed to the session on validation exceptions.
*
- * @var array
+ * @var array<int, string>
*/
protected $dontFlash = [
'current_password',