. */ namespace SP\Domain\Export\Services; use DOMDocument; use SP\Core\Application; use SP\Domain\Common\Services\Service; use SP\Domain\Export\Ports\XmlExportEntityService; /** * Class XmlExportEntityBase */ abstract class XmlExportEntityBase extends Service implements XmlExportEntityService { protected readonly DOMDocument $document; public function __construct( Application $application ) { parent::__construct($application); $this->document = new DOMDocument('1.0', 'UTF-8'); } }