mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-17 16:52:57 +00:00
9 lines
162 B
PHP
9 lines
162 B
PHP
<?php
|
|
|
|
namespace RobThree\Auth\Providers\Qr;
|
|
|
|
interface IQRCodeProvider
|
|
{
|
|
public function getQRCodeImage($qrtext, $size);
|
|
public function getMimeType();
|
|
} |