From cd13bf0a1be156113f775b1c2bc73dcdc4eb738b Mon Sep 17 00:00:00 2001 From: Brandon Nifong Date: Thu, 25 May 2023 03:25:32 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20return=20type=20in=20scena?= =?UTF-8?q?rio=20where=20getSummary()=20is=20`null`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Model/AppInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/AppInfo.php b/src/Model/AppInfo.php index d8b33e8..e696375 100644 --- a/src/Model/AppInfo.php +++ b/src/Model/AppInfo.php @@ -167,9 +167,9 @@ public function getDeveloperName(): ?string /** * Returns a summary of the application. * - * @return string summary of the application + * @return string|null summary of the application */ - public function getSummary(): string + public function getSummary(): ?string { return $this->summary; }