QRMarkupSVGTest.php 367 B

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