Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
PluginCacheCategory
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3declare(strict_types=1);
4
5namespace PeServer\App\Models\Cache;
6
7class PluginCacheCategory
8{
9    /**
10     * 生成。
11     *
12     * @param string $categoryId
13     * @param string $categoryName
14     * @param string $description
15     */
16    public function __construct(
17        public string $categoryId,
18        public string $categoryName,
19        public string $description
20    ) {
21    }
22}