CredentialsInterface.php 377 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace OAuth\Common\Consumer;
  3. /**
  4. * Credentials Interface, credentials should implement this.
  5. */
  6. interface CredentialsInterface
  7. {
  8. /**
  9. * @return string
  10. */
  11. public function getCallbackUrl();
  12. /**
  13. * @return string
  14. */
  15. public function getConsumerId();
  16. /**
  17. * @return string
  18. */
  19. public function getConsumerSecret();
  20. }