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
3declare(strict_types=1);
4
5namespace PeServer\App\Models\Configuration;
6
7use PeServer\App\Models\Configuration\CookieStoreSetting;
8use PeServer\App\Models\Configuration\SessionStoreSetting;
9use PeServer\App\Models\Configuration\TemporaryStoreSetting;
10
11/**
12 * ストア設定。
13 *
14 * @immutable
15 */
16class StoreSetting
17{
18    #region variable
19
20    public CookieStoreSetting $cookie;
21    public TemporaryStoreSetting $temporary;
22    public SessionStoreSetting $session;
23
24    #endregion
25}