Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
AddressSetting | 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 AddressSetting |
15 | { |
16 | #region variable |
17 | |
18 | public string $domain; |
19 | |
20 | #[Mapping(name: 'public_url')] |
21 | public string $publicUrl; |
22 | |
23 | #[Mapping(name: 'from_email')] |
24 | public EmailAddressSetting $fromEmail; |
25 | |
26 | #[Mapping(name: 'return_email')] |
27 | public string $returnEmail; |
28 | |
29 | public ProjectFamilySetting $families; |
30 | |
31 | public NotifySetting $notify; |
32 | |
33 | #endregion |
34 | } |