mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-10 19:50:09 +01:00
39 lines
648 B
PHP
39 lines
648 B
PHP
<?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);
|
|
}
|