QRMarkupXMLTest.php 670 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Class QRMarkupXMLTest
  4. *
  5. * @created 01.05.2024
  6. * @author smiley <smiley@chillerlan.net>
  7. * @copyright 2024 smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\QRCodeTest\Output;
  11. use chillerlan\QRCode\QROptions;
  12. use chillerlan\QRCode\Data\QRMatrix;
  13. use chillerlan\QRCode\Output\{QRMarkupXML, QROutputInterface};
  14. use chillerlan\Settings\SettingsContainerInterface;
  15. /**
  16. *
  17. */
  18. class QRMarkupXMLTest extends QRMarkupTestAbstract{
  19. protected function getOutputInterface(
  20. SettingsContainerInterface|QROptions $options,
  21. QRMatrix $matrix,
  22. ):QROutputInterface{
  23. return new QRMarkupXML($options, $matrix);
  24. }
  25. }