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