diff options
| author | wn_ <invalid@email.com> | 2024-12-15 13:39:54 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-12-15 13:39:54 +0000 |
| commit | 18b17cbc839026ecb99c2b044e401c2032626df7 (patch) | |
| tree | 04ab4270d6e2d0300c1ae5811ced7996f4b889af /classes/FeedEnclosure.php | |
| parent | 57dd754e07ecc7a4cf551568f0b2c4448c246b84 (diff) | |
Revert some stuff based upon feedback
Diffstat (limited to 'classes/FeedEnclosure.php')
| -rw-r--r-- | classes/FeedEnclosure.php | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/classes/FeedEnclosure.php b/classes/FeedEnclosure.php index 6ef9bca5e..1e53de2e8 100644 --- a/classes/FeedEnclosure.php +++ b/classes/FeedEnclosure.php @@ -1,11 +1,9 @@ <?php class FeedEnclosure { - function __construct( - 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; } |