Files
php-qrcode/tests/Output/QRGdImagePNGTest.php
T
2023-10-25 21:30:48 +02:00

25 lines
483 B
PHP

<?php
/**
* Class QRGdImagePNGTest
*
* @created 11.12.2021
* @author smiley <smiley@chillerlan.net>
* @copyright 2021 smiley
* @license MIT
*/
namespace chillerlan\QRCodeTest\Output;
use chillerlan\QRCode\Output\QRGdImagePNG;
use chillerlan\QRCode\Output\QROutputInterface;
/**
*
*/
final class QRGdImagePNGTest extends QRGdImageTestAbstract{
protected string $type = QROutputInterface::GDIMAGE_PNG;
protected string $FQN = QRGdImagePNG::class;
}