PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
league
/
oauth1-client
/
src
/
Credentials
<?php namespace League\OAuth1\Client\Credentials; class ClientCredentials extends Credentials implements ClientCredentialsInterface { /** * The credentials callback URI. * * @var string */ protected $callbackUri; /** * @inheritDoc */ public function getCallbackUri() { return $this->callbackUri; } /** * @inheritDoc */ public function setCallbackUri($callbackUri) { $this->callbackUri = $callbackUri; } }
[-] TokenCredentials.php
[edit]
[+]
..
[-] TemporaryCredentials.php
[edit]
[-] CredentialsException.php
[edit]
[-] Credentials.php
[edit]
[-] ClientCredentials.php
[edit]
[-] RsaClientCredentials.php
[edit]
[-] CredentialsInterface.php
[edit]
[-] ClientCredentialsInterface.php
[edit]