mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-18 18:30:05 +00:00
23 lines
412 B
PHP
23 lines
412 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeReaderGDTest
|
|
*
|
|
* @created 12.12.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeTest;
|
|
|
|
use chillerlan\QRCode\Common\GDLuminanceSource;
|
|
|
|
/**
|
|
* Tests the GD based reader
|
|
*/
|
|
final class QRCodeReaderGDTest extends QRCodeReaderTestAbstract{
|
|
|
|
protected string $FQN = GDLuminanceSource::class;
|
|
|
|
}
|