CredentialsInterface.php 366 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace AlibabaCloud\Credentials;
  3. use AlibabaCloud\Credentials\Signature\SignatureInterface;
  4. /**
  5. * Interface CredentialsInterface
  6. *
  7. * @codeCoverageIgnore
  8. */
  9. interface CredentialsInterface
  10. {
  11. /**
  12. * @return string
  13. */
  14. public function __toString();
  15. /**
  16. * @return SignatureInterface
  17. */
  18. public function getSignature();
  19. }