mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-07-31 20:49:33 +02: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();
|
|
} |