Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
UserCacheItem | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Models\Cache; |
6 | |
7 | use DateTime; |
8 | |
9 | class UserCacheItem |
10 | { |
11 | public function __construct( |
12 | public string $userId, |
13 | public string $userName, |
14 | public string $level, |
15 | public string $state, |
16 | public string $website, |
17 | public string $description, |
18 | public string $apiKey, |
19 | public string $secret, |
20 | public ?DateTime $apiCreatedTimestamp |
21 | ) { |
22 | } |
23 | } |