Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
UserCache | |
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 PeServer\App\Models\Cache\UserCacheItem; |
8 | |
9 | class UserCache |
10 | { |
11 | /** |
12 | * 生成。 |
13 | * |
14 | * @param UserCacheItem[] $items |
15 | */ |
16 | public function __construct( |
17 | public array $items |
18 | ) { |
19 | } |
20 | } |