QRGdImageGIFTest.php 695 B

12345678910111213141516171819202122232425262728
  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. declare(strict_types=1);
  11. namespace chillerlan\QRCodeTest\Output;
  12. use chillerlan\QRCode\QROptions;
  13. use chillerlan\QRCode\Data\QRMatrix;
  14. use chillerlan\QRCode\Output\{QRGdImageGIF, QROutputInterface};
  15. use chillerlan\Settings\SettingsContainerInterface;
  16. final class QRGdImageGIFTest extends QRGdImageTestAbstract{
  17. protected function getOutputInterface(
  18. SettingsContainerInterface|QROptions $options,
  19. QRMatrix $matrix,
  20. ):QROutputInterface{
  21. return new QRGdImageGIF($options, $matrix);
  22. }
  23. }