1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-05-09 03:11:31 +02:00
ShikiryuRSS/src/Entity/Item/Enclosure.php
2023-04-17 14:28:01 +02:00

43 lines
829 B
PHP

<?php
namespace Shikiryu\SRSS\Entity\Item;
use ReflectionException;
use Shikiryu\SRSS\Entity\SRSSElement;
use Shikiryu\SRSS\Validator\HasValidator;
use Shikiryu\SRSS\Validator\Validator;
class Enclosure extends HasValidator implements SRSSElement
{
/**
* @validate url
* @format url
*/
protected ?string $url = null;
/**
* @validate int
* @format int
*/
protected ?int $length = null;
/**
* @validate mediaType
* @format mediaType
*/
protected ?string $type = null;
public function isValid(): bool
{
try {
return (new Validator())->isObjectValid($this);
} catch (ReflectionException) {
return false;
}
}
public function toArray(): array
{
return get_object_vars($this);
}
}