Files
kupshop/bundles/KupShop/FeedGeneratorBundle/XSD/Definition/SerializableInterface.php
2025-08-02 16:30:27 +02:00

14 lines
285 B
PHP

<?php
namespace KupShop\FeedGeneratorBundle\XSD\Definition;
interface SerializableInterface
{
/**
* Serializes XSD element.
*
* @return array serialized XSD element (or array of elements) into associative array(s)
*/
public function serialize(): array;
}