提交服务端基础框架
This commit is contained in:
23
Server/vendor/alibabacloud/credentials/src/CredentialsInterface.php
vendored
Executable file
23
Server/vendor/alibabacloud/credentials/src/CredentialsInterface.php
vendored
Executable file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace AlibabaCloud\Credentials;
|
||||
|
||||
use AlibabaCloud\Credentials\Signature\SignatureInterface;
|
||||
|
||||
/**
|
||||
* Interface CredentialsInterface
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
interface CredentialsInterface
|
||||
{
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function __toString();
|
||||
|
||||
/**
|
||||
* @return SignatureInterface
|
||||
*/
|
||||
public function getSignature();
|
||||
}
|
||||
Reference in New Issue
Block a user