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