15 lines
217 B
PHP
15 lines
217 B
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Auth;
|
|
|
|
interface AuthorizationReqRegistry
|
|
{
|
|
|
|
/**
|
|
* @param $operationId string
|
|
* @return AuthorizationReq
|
|
*/
|
|
public function getAuthorizationReq($operationId);
|
|
|
|
}
|