14 lines
310 B
PHP
14 lines
310 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace OpenCloud\Common\Auth;
|
||
|
|
||
|
interface IdentityService
|
||
|
{
|
||
|
/**
|
||
|
* Authenticates and retrieves back a token and catalog.
|
||
|
*
|
||
|
* @return array The FIRST key is {@see Token} instance, the SECOND key is a {@see Catalog} instance
|
||
|
*/
|
||
|
public function authenticate(array $options);
|
||
|
}
|