mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-17 22:01:33 +00:00
25 lines
483 B
PHP
25 lines
483 B
PHP
<?php
|
|
/**
|
|
* Class QRGdImagePNGTest
|
|
*
|
|
* @created 11.12.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeTest\Output;
|
|
|
|
use chillerlan\QRCode\Output\QRGdImagePNG;
|
|
use chillerlan\QRCode\Output\QROutputInterface;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
final class QRGdImagePNGTest extends QRGdImageTestAbstract{
|
|
|
|
protected string $type = QROutputInterface::GDIMAGE_PNG;
|
|
protected string $FQN = QRGdImagePNG::class;
|
|
|
|
}
|