PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
league
/
oauth1-client
/
src
/
Credentials
<?php namespace League\OAuth1\Client\Credentials; interface CredentialsInterface { /** * Get the credentials identifier. * * @return string */ public function getIdentifier(); /** * Set the credentials identifier. * * @param string $identifier * * @return void */ public function setIdentifier($identifier); /** * Get the credentials secret. * * @return string */ public function getSecret(); /** * Set the credentials secret. * * @param string $secret * * @return void */ public function setSecret($secret); }
[-] TokenCredentials.php
[edit]
[+]
..
[-] TemporaryCredentials.php
[edit]
[-] CredentialsException.php
[edit]
[-] Credentials.php
[edit]
[-] ClientCredentials.php
[edit]
[-] RsaClientCredentials.php
[edit]
[-] CredentialsInterface.php
[edit]
[-] ClientCredentialsInterface.php
[edit]