istic-openstack/server/vendor/php-opencloud/common/src/Common/Auth/IdentityService.php
manzerbredes 53f65de9d4 Test
2016-03-28 12:17:43 +02:00

13 lines
342 B
PHP
Executable file

<?php declare(strict_types=1);
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): array;
}