From 8ac67e9e8526b211e6e0bc784f03f6c93e12cffd Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 17 Mar 2025 12:47:23 +0100 Subject: [PATCH] OembedResponse.php: trim --- inc/Data/OembedResponse.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/inc/Data/OembedResponse.php b/inc/Data/OembedResponse.php index 0466d956..0e99f5ff 100644 --- a/inc/Data/OembedResponse.php +++ b/inc/Data/OembedResponse.php @@ -2,11 +2,10 @@ namespace Vichan\Data; +/** + * Raw return values, those aren't validated beyond being not null and the type. + */ class OembedResponse { - public string $type; public ?string $title; - public ?int $cache_age; public ?string $thumbnail_url; - public ?int $thumbnail_width; - public ?int $thumbnail_height; }