Files
php-qrcode/examples/authenticator.php
T
smiley 7df5a47e35 examples
2017-12-24 00:48:59 +01:00

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();