mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 01:37:58 +00:00
23 lines
377 B
PHP
23 lines
377 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;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
final class QRGdImagePNGTest extends QRGdImageTestAbstract{
|
|
|
|
protected string $FQN = QRGdImagePNG::class;
|
|
|
|
}
|