Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
ConfigurationSetting | 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\App\Models\Configuration\PersistenceSetting; |
8 | |
9 | /** |
10 | * その他設定。 |
11 | * |
12 | * @immutable |
13 | */ |
14 | class ConfigurationSetting |
15 | { |
16 | #region variable |
17 | |
18 | public ConfirmSetting $confirm; |
19 | |
20 | public AddressSetting $address; |
21 | |
22 | #endregion |
23 | } |