1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-06-01 21:47:57 +02:00
ShikiryuRSS/src/Entity/SRSSElement.php

16 lines
214 B
PHP
Raw Normal View History

2023-04-06 11:07:06 +02:00
<?php
namespace Shikiryu\SRSS\Entity;
interface SRSSElement
{
/**
* @return bool
*/
public function isValid(): bool;
/**
* @return array
*/
public function toArray(): array;
}