Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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
03 namespace OAuth\OAuth1\Signature;
04
05 use OAuth\Common\Http\Uri\UriInterface;
06
07 interface SignatureInterface
08 {
09 /**
10 * @param string $algorithm
11 */
12 public function setHashingAlgorithm($algorithm);
13
14 /**
15 * @param string $token
16 */
17 public function setTokenSecret($token);
18
19 /**
20 * @param string $method
21 *
22 * @return string
23 */
24 public function getSignature(UriInterface $uri, array $params, $method = 'POST');
25 }
26