QRGdImageWEBPTest.php 488 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Class QRGdImageWEBPTest
  4. *
  5. * @created 05.09.2023
  6. * @author smiley <smiley@chillerlan.net>
  7. * @copyright 2023 smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\QRCodeTest\Output;
  11. use chillerlan\QRCode\Output\QRGdImageWEBP;
  12. use chillerlan\QRCode\Output\QROutputInterface;
  13. /**
  14. *
  15. */
  16. final class QRGdImageWEBPTest extends QRGdImageTestAbstract{
  17. protected string $type = QROutputInterface::GDIMAGE_WEBP;
  18. protected string $FQN = QRGdImageWEBP::class;
  19. }