/home/techb158/immovalet.com/vendor/league/oauth1-client/src/Signature
NameSizeModeActions
EncodesUrl.php34200644editdlrm
HmacSha1Signature.php7810644editdlrm
PlainTextSignature.php3810644editdlrm
RsaSha1Signature.php8200644editdlrm
Signature.php11690644editdlrm
SignatureInterface.php11790644editdlrm
Edit: /home/techb158/immovalet.com/vendor/league/oauth1-client/src/Signature/Signature.php (1169B)
clientCredentials = $clientCredentials; } /** * @inheritDoc */ public function setCredentials(CredentialsInterface $credentials) { $this->credentials = $credentials; } /** * Generate a signing key. * * @return string */ protected function key() { $key = rawurlencode($this->clientCredentials->getSecret()) . '&'; if ($this->credentials !== null) { $key .= rawurlencode($this->credentials->getSecret()); } return $key; } }