mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-19 18:50:55 +00:00
23 lines
393 B
PHP
23 lines
393 B
PHP
<?php
|
|
/**
|
|
* Class QRGdImageGIFTest
|
|
*
|
|
* @created 11.12.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeTest\Output;
|
|
|
|
use chillerlan\QRCode\Output\QROutputInterface;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
final class QRGdImageGIFTest extends QRGdImageTestAbstract{
|
|
|
|
protected string $type = QROutputInterface::GDIMAGE_GIF;
|
|
|
|
}
|