QRMarkupSVGTest.php 450 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Class QRMarkupSVGTest
  4. *
  5. * @created 11.12.2021
  6. * @author smiley <smiley@chillerlan.net>
  7. * @copyright 2021 smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\QRCodeTest\Output;
  11. use chillerlan\QRCode\Output\{QRMarkupSVG, QROutputInterface};
  12. /**
  13. *
  14. */
  15. final class QRMarkupSVGTest extends QRMarkupTestAbstract{
  16. protected string $FQN = QRMarkupSVG::class;
  17. protected string $type = QROutputInterface::MARKUP_SVG;
  18. }