diff options
| author | wn_ <invalid@email.com> | 2024-12-15 13:43:49 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-12-15 13:43:49 +0000 |
| commit | 62a6191f04e37cc9b40fcf3e713563ed51722e95 (patch) | |
| tree | ed93a80166e2a44df19c02c09b845e57a5202d90 | |
| parent | 18b17cbc839026ecb99c2b044e401c2032626df7 (diff) | |
Deal with FeedEnclosure property accessed before initialization.
| -rw-r--r-- | classes/FeedEnclosure.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/classes/FeedEnclosure.php b/classes/FeedEnclosure.php index 1e53de2e8..10dd2ae33 100644 --- a/classes/FeedEnclosure.php +++ b/classes/FeedEnclosure.php @@ -1,9 +1,9 @@ <?php class FeedEnclosure { - public string $link; - public string $type; - public string $length; - public string $title; - public string $height; - public string $width; + public string $link = ''; + public string $type = ''; + public string $length = ''; + public string $title = ''; + public string $height = ''; + public string $width = ''; } |