Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
SessionAnonymous | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Models\Data; |
6 | |
7 | /** |
8 | * 匿名セッション情報。 |
9 | * |
10 | * 今時点の作業状態が真になる。 |
11 | */ |
12 | readonly class SessionAnonymous |
13 | { |
14 | public function __construct( |
15 | public bool $login = false, |
16 | public bool $signup1 = false, |
17 | public bool $signup2 = false, |
18 | public bool $passwordReminder = false, |
19 | public bool $passwordReset = false, |
20 | ) { |
21 | } |
22 | } |