1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-06-02 22:07:57 +02:00
ShikiryuRSS/src/Entity/Channel/Cloud.php

47 lines
973 B
PHP
Raw Normal View History

<?php
namespace Shikiryu\SRSS\Entity\Channel;
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;
//<cloud domain="rpc.sys.com" port="80" path="/RPC2" registerProcedure="myCloud.rssPleaseNotify" protocol="xml-rpc" />
public function isValid(): bool
{
try {
return (new Validator())->isObjectValid($this);
} catch (\ReflectionException $e) {
return false;
}
}
public function toArray(): array
{
return get_object_vars($this);
}
}