Revert some stuff based upon feedback

This commit is contained in:
wn_
2024-12-15 13:39:54 +00:00
parent 57dd754e07
commit 18b17cbc83
5 changed files with 48 additions and 46 deletions

View File

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