1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Http;
4:
5: /**
6: * @api
7: */
8: interface AccessTokenInterface
9: {
10: /**
11: * Get the access token
12: */
13: public function getToken(): string;
14:
15: /**
16: * Get the access token's type, e.g. "Bearer"
17: */
18: public function getTokenType(): string;
19: }
20: