Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| AccessTokenEntity | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * OAuth2 access token entity. |
| 5 | * |
| 6 | * This Source Code Form is subject to the terms of the Mozilla Public License, |
| 7 | * v. 2.0. If a copy of the MPL was not distributed with this file, You can |
| 8 | * obtain one at https://mozilla.org/MPL/2.0/. |
| 9 | * |
| 10 | * @package phpMyFAQ |
| 11 | * @author Thorsten Rinne <thorsten@phpmyfaq.de> |
| 12 | * @copyright 2026 phpMyFAQ Team |
| 13 | * @license https://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0 |
| 14 | * @link https://www.phpmyfaq.de |
| 15 | * @since 2026-02-09 |
| 16 | */ |
| 17 | |
| 18 | declare(strict_types=1); |
| 19 | |
| 20 | namespace phpMyFAQ\Auth\OAuth2\Entity; |
| 21 | |
| 22 | use League\OAuth2\Server\Entities\AccessTokenEntityInterface; |
| 23 | use League\OAuth2\Server\Entities\Traits\AccessTokenTrait; |
| 24 | use League\OAuth2\Server\Entities\Traits\EntityTrait; |
| 25 | use League\OAuth2\Server\Entities\Traits\TokenEntityTrait; |
| 26 | |
| 27 | final class AccessTokenEntity implements AccessTokenEntityInterface |
| 28 | { |
| 29 | use AccessTokenTrait; |
| 30 | use EntityTrait; |
| 31 | use TokenEntityTrait; |
| 32 | } |