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