Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
CryptoTokenSetting
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
7/**
8 * 暗号トークン設定。
9 *
10 * @immutable
11 */
12class CryptoTokenSetting
13{
14    #region variable
15
16    /**
17     * アルゴリズム。
18     *
19     * @var non-empty-string
20     */
21    public string $algorithm;
22    public string $password;
23
24    #endregion
25}