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