| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | class IssuedAtClaim extends RegisteredClaim  | 
            ||
| 15 | { | 
            ||
| 16 | use NumericDateClaim;  | 
            ||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * Constructor.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @param int $issue_time Issued at time as a unix timestamp  | 
            ||
| 22 | */  | 
            ||
| 23 | 19 | public function __construct(int $issue_time)  | 
            |
| 26 | 19 | }  | 
            |
| 27 | |||
| 28 | /**  | 
            ||
| 29 | * Initialize with time set to current time.  | 
            ||
| 30 | */  | 
            ||
| 31 | 1 | public static function now(): self  | 
            |
| 36 |