DomDocumentFactory.php 409 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @copyright Vertex. All rights reserved. https://www.vertexinc.com/
  4. * @author Mediotype https://www.mediotype.com/
  5. */
  6. namespace Vertex\Tax\Model;
  7. /**
  8. * Factory for a DOMDocument
  9. */
  10. class DomDocumentFactory
  11. {
  12. /**
  13. * Create a DOMDocument
  14. *
  15. * @return \DOMDocument
  16. */
  17. public function create()
  18. {
  19. return new \DOMDocument();
  20. }
  21. }