Address PHPStan warnings for FeedEnclosure.

This commit is contained in:
wn_ 2021-11-15 02:46:19 +00:00
parent 78acf18b70
commit 41b4eef504
1 changed files with 11 additions and 0 deletions

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