Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
SignatureInterface.php
01 <?php
02 namespace OAuth\OAuth1\Signature;
03
04 use OAuth\Common\Consumer\Credentials;
05 use OAuth\Common\Http\Uri\UriInterface;
06
07 interface SignatureInterface
08 {
09 /**
10 * @param \OAuth\Common\Consumer\Credentials $credentials
11 * @abstract
12 */
13 public function __construct(Credentials $credentials);
14
15 /**
16 * @param string $algorithm
17 * @abstract
18 */
19 public function setHashingAlgorithm($algorithm);
20
21 /**
22 * @param string $token
23 * @abstract
24 */
25 public function setTokenSecret($token);
26
27 /**
28 * @param \OAuth\Common\Http\Uri\UriInterface $uri
29 * @param array $params
30 * @param string $method
31 * @abstract
32 */
33 public function getSignature(UriInterface $uri, array $params, $method = 'POST');
34 }
35