From 4fb314108c0a75efbd9f6466634870a545f32620 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 3 Oct 2023 22:32:41 +0200 Subject: [PATCH] Update ContentRating.php Allow null for description. --- src/Model/ContentRating.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/ContentRating.php b/src/Model/ContentRating.php index 7a56f30..d7b68b7 100644 --- a/src/Model/ContentRating.php +++ b/src/Model/ContentRating.php @@ -75,7 +75,7 @@ class ContentRating /** * Description for the content rating. * - * @var string + * @var string|null */ - public string $description; + public ?string $description; }