Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
RefreshToken
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace App\Identity\Infrastructure\Security;
6
7use Gesdinet\JWTRefreshTokenBundle\Model\AbstractRefreshToken;
8
9/**
10 * Concrete refresh-token entity for gesdinet/jwt-refresh-token-bundle.
11 *
12 * Extends the bundle's model (reuses isValid()/createForUserWithTtl()); mapped
13 * via XML next to the other Identity persistence config — the abstract model's
14 * protected properties can't carry attribute mapping.
15 */
16class RefreshToken extends AbstractRefreshToken
17{
18}