QRGdImageGIFTest.php 670 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Class QRGdImageGIFTest
  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\QROptions;
  12. use chillerlan\QRCode\Data\QRMatrix;
  13. use chillerlan\QRCode\Output\{QRGdImageGIF, QROutputInterface};
  14. use chillerlan\Settings\SettingsContainerInterface;
  15. final class QRGdImageGIFTest extends QRGdImageTestAbstract{
  16. protected function getOutputInterface(
  17. SettingsContainerInterface|QROptions $options,
  18. QRMatrix $matrix,
  19. ):QROutputInterface{
  20. return new QRGdImageGIF($options, $matrix);
  21. }
  22. }