mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-18 10:10:05 +00:00
25 lines
488 B
PHP
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;
|
|
|
|
}
|