Skip to content

Commit 4ce9cde

Browse files
authored
Fix TypeError: Typed property Typecho\Feed::$subTitle must be string (#1779)
1 parent 0b0476e commit 4ce9cde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

var/Typecho/Feed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ class Feed
7979
* 聚合副标题
8080
*
8181
* @access private
82-
* @var string
82+
* @var string|null
8383
*/
84-
private string $subTitle;
84+
private ?string $subTitle;
8585

8686
/**
8787
* 版本信息

0 commit comments

Comments
 (0)