Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace PeServer\Core\Mvc;
6
7/**
8 * ロジック呼び出し。
9 */
10enum LogicCallMode
11{
12    #region define
13
14    /**
15     * 初期化状態生値。
16     */
17    case Initialize;
18    /**
19     * 確定状態生値。
20     */
21    case Submit;
22
23    #endregion
24}