Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
DebugSetting | 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\Text; |
8 | use PeServer\Core\Serialization\Mapping; |
9 | |
10 | /** |
11 | * デバッグ設定。 |
12 | * |
13 | * @immutable |
14 | */ |
15 | class DebugSetting |
16 | { |
17 | #region variable |
18 | |
19 | #[Mapping(name: 'mail_overwrite_target')] |
20 | public string $mailOverwriteTarget = Text::EMPTY; //@phpstan-ignore-line [CODE_READONLY] |
21 | |
22 | #endregion |
23 | } |