19 lines
284 B
PHP
19 lines
284 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace AlibabaCloud\Client\Credentials;
|
||
|
|
||
|
/**
|
||
|
* interface CredentialsInterface
|
||
|
*
|
||
|
* @package AlibabaCloud\Client\Credentials
|
||
|
*
|
||
|
* @codeCoverageIgnore
|
||
|
*/
|
||
|
interface CredentialsInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function __toString();
|
||
|
}
|