1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-05-16 17:21:31 +02:00
ShikiryuRSS/src/Entity/SRSSElement.php
2023-04-06 11:07:06 +02:00

16 lines
214 B
PHP

<?php
namespace Shikiryu\SRSS\Entity;
interface SRSSElement
{
/**
* @return bool
*/
public function isValid(): bool;
/**
* @return array
*/
public function toArray(): array;
}