mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-19 18:20:17 +00:00
23 lines
393 B
PHP
23 lines
393 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\QROutputInterface;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
final class QRGdImageJPGTest extends QRGdImageTestAbstract{
|
|
|
|
protected string $type = QROutputInterface::GDIMAGE_JPG;
|
|
|
|
}
|