Files
2026-04-28 15:13:50 +02:00

22 lines
372 B
PHP

<?php
namespace WPO\IPS\EDI\Interfaces;
use WPO\IPS\EDI\Document;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
interface BuilderInterface {
/**
* Build the EDI document.
*
* @param Document $document The EDI document to build.
* @return string The serialized XML string.
*/
public function build( Document $document ): string;
}