Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
ApiSetting | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Models\Configuration; |
6 | |
7 | use PeServer\Core\Serialization\Mapping; |
8 | |
9 | /** |
10 | * アドレス設定。 |
11 | * |
12 | * @immutable |
13 | */ |
14 | class ApiSetting |
15 | { |
16 | #region variable |
17 | |
18 | #[Mapping("release_url")] |
19 | public string $releaseUrl; |
20 | |
21 | #endregion |
22 | } |