1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-06-01 09:37:58 +02:00
ShikiryuRSS/src/Entity/Channel/Cloud.php

46 lines
873 B
PHP
Raw Normal View History

<?php
namespace Shikiryu\SRSS\Entity\Channel;
2023-04-12 15:28:38 +02:00
use ReflectionException;
use Shikiryu\SRSS\Entity\SRSSElement;
use Shikiryu\SRSS\Validator\HasValidator;
use Shikiryu\SRSS\Validator\Validator;
class Cloud extends HasValidator implements SRSSElement
{
/**
* @string
*/
2023-04-12 14:41:45 +02:00
public ?string $domain = null;
/**
* @int
*/
2023-04-12 14:41:45 +02:00
public ?int $port = null;
/**
* @string
*/
2023-04-12 14:41:45 +02:00
public ?string $path = null;
/**
* @string
*/
2023-04-12 14:41:45 +02:00
public ?string $registerProcedure = null;
/**
* @string
*/
2023-04-12 14:41:45 +02:00
public ?string $protocol = null;
public function isValid(): bool
{
try {
return (new Validator())->isObjectValid($this);
2023-04-12 15:28:38 +02:00
} catch (ReflectionException) {
return false;
}
}
public function toArray(): array
{
return get_object_vars($this);
}
}