yoti-8.x-2.5/src/YotiSdkInterface.php
src/YotiSdkInterface.php
<?php
namespace Drupal\yoti;
/**
* Interface YotiSdk.
*
* @package Drupal\yoti
*/
interface YotiSdkInterface {
/**
* Creates a new YotiClient.
*
* @return \Yoti\YotiClient
* Yoti Client.
*/
public function getClient();
/**
* Get Yoti app login URL.
*
* @return null|string
* Yoti App URL.
*/
public function getLoginUrl();
}
