1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-12 21:55:56 +00:00

Address PHPStan warnings for FeedEnclosure.

This commit is contained in:
wn_
2021-11-15 02:46:19 +00:00
parent 78acf18b70
commit 41b4eef504

View File

@@ -1,10 +1,21 @@
<?php
class FeedEnclosure {
/** @var string */
public $link;
/** @var string */
public $type;
/** @var string */
public $length;
/** @var string */
public $title;
/** @var string */
public $height;
/** @var string */
public $width;
}