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

25 lines
488 B
PHP

<?php
/**
* Class QRGdImageWEBPTest
*
* @created 05.09.2023
* @author smiley <smiley@chillerlan.net>
* @copyright 2023 smiley
* @license MIT
*/
namespace chillerlan\QRCodeTest\Output;
use chillerlan\QRCode\Output\QRGdImageWEBP;
use chillerlan\QRCode\Output\QROutputInterface;
/**
*
*/
final class QRGdImageWEBPTest extends QRGdImageTestAbstract{
protected string $type = QROutputInterface::GDIMAGE_WEBP;
protected string $FQN = QRGdImageWEBP::class;
}