QRMarkupSVGTest.php 455 B

123456789101112131415161718192021222324
  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;
  12. use chillerlan\QRCode\QRCode;
  13. /**
  14. *
  15. */
  16. final class QRMarkupSVGTest extends QRMarkupTestAbstract{
  17. protected string $FQN = QRMarkupSVG::class;
  18. protected string $type = QRCode::OUTPUT_MARKUP_SVG;
  19. }