mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
17 lines
354 B
PHP
17 lines
354 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OTPHP;
|
|
|
|
interface FactoryInterface
|
|
{
|
|
/**
|
|
* This method is the unique public method of the class. It can load a provisioning Uri and convert it into an OTP
|
|
* object.
|
|
*
|
|
* @param non-empty-string $uri
|
|
*/
|
|
public static function loadFromProvisioningUri(string $uri): OTPInterface;
|
|
}
|