| 1 | <?php |
||
| 17 | abstract class AbstractJwtAwareAccessToken implements AccessTokenEntityInterface { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var CryptKey |
||
| 21 | */ |
||
| 22 | private $privateKey; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritdoc |
||
| 26 | */ |
||
| 27 | public function convertToEncryptedAccessToken() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritdoc |
||
| 43 | */ |
||
| 44 | public function setPrivateKey(CryptKey $privateKey) |
||
| 48 | } |
||
| 49 |