14 lines
285 B
PHP
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;
|
|
}
|