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

25 lines
485 B
PHP

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