mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-18 02:54:06 +00:00
18 lines
343 B
PHP
18 lines
343 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @filesource authenticator.php
|
|
* @created 24.12.2017
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2017 Smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeExamples;
|
|
|
|
require_once '../vendor/autoload.php';
|
|
|
|
header('Content-type: image/svg+xml');
|
|
|
|
echo (new MyAuthenticatorClass)->getQRCode();
|