Deal with FeedEnclosure property accessed before initialization.

This commit is contained in:
wn_
2024-12-15 13:43:49 +00:00
parent 18b17cbc83
commit 62a6191f04

View File

@@ -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 = '';
}