Spaces:
No application file
No application file
mautic
/
app
/bundles
/IntegrationsBundle
/Auth
/Provider
/Oauth2ThreeLegged
/Credentials
/CredentialsInterface.php
declare(strict_types=1); | |
namespace Mautic\IntegrationsBundle\Auth\Provider\Oauth2ThreeLegged\Credentials; | |
use Mautic\IntegrationsBundle\Auth\Provider\AuthCredentialsInterface; | |
interface CredentialsInterface extends AuthCredentialsInterface | |
{ | |
public function getAuthorizationUrl(): string; | |
public function getTokenUrl(): string; | |
public function getClientId(): ?string; | |
public function getClientSecret(): ?string; | |
} | |