TaskSystem/vendor/alibabacloud/credentials/src/CredentialsInterface.php
2023-10-17 10:24:59 +08:00

24 lines
366 B
PHP

<?php
namespace AlibabaCloud\Credentials;
use AlibabaCloud\Credentials\Signature\SignatureInterface;
/**
* Interface CredentialsInterface
*
* @codeCoverageIgnore
*/
interface CredentialsInterface
{
/**
* @return string
*/
public function __toString();
/**
* @return SignatureInterface
*/
public function getSignature();
}