Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
CacheSetting
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\PersistenceSetting;
8
9/**
10 * ストレージ設定。
11 *
12 * キャッシュという名前が悪いのはもういい。
13 *
14 * @immutable
15 */
16class CacheSetting
17{
18    #region variable
19
20    /** 一時ディレクトリ */
21    public string $temporary;
22    /** DBキャッシュデータ配置ディレクトリ */
23    public string $database;
24    /** テンプレートキャッシュデータ配置ディレクトリ */
25    public string $template;
26    /** バックアップ配置ディレクトリ */
27    public string $backup;
28    // /** デプロイ諸々配置ディレクトリ */
29    public string $deploy;
30
31    #endregion
32}