Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
StoreSetting | 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\CookieStoreSetting; |
8 | use PeServer\App\Models\Configuration\SessionStoreSetting; |
9 | use PeServer\App\Models\Configuration\TemporaryStoreSetting; |
10 | |
11 | /** |
12 | * ストア設定。 |
13 | * |
14 | * @immutable |
15 | */ |
16 | class StoreSetting |
17 | { |
18 | #region variable |
19 | |
20 | public CookieStoreSetting $cookie; |
21 | public TemporaryStoreSetting $temporary; |
22 | public SessionStoreSetting $session; |
23 | |
24 | #endregion |
25 | } |