mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-21 03:40:30 +00:00
23 lines
396 B
PHP
23 lines
396 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\QROutputInterface;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
final class QRGdImageWEBPTest extends QRGdImageTestAbstract{
|
|
|
|
protected string $type = QROutputInterface::GDIMAGE_WEBP;
|
|
|
|
}
|