Spaces:
No application file
No application file
mautic
/
app
/bundles
/IntegrationsBundle
/Auth
/Provider
/Oauth1aTwoLegged
/CredentialsInterface.php
declare(strict_types=1); | |
namespace Mautic\IntegrationsBundle\Auth\Provider\Oauth1aTwoLegged; | |
use Mautic\IntegrationsBundle\Auth\Provider\AuthCredentialsInterface; | |
interface CredentialsInterface extends AuthCredentialsInterface | |
{ | |
public function getAuthUrl(): string; | |
public function getConsumerKey(): ?string; | |
public function getConsumerSecret(): ?string; | |
public function getToken(): ?string; | |
public function getTokenSecret(): ?string; | |
} | |