Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
SessionKey
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;
6
7abstract class SessionKey
8{
9    #region function
10
11    /**
12     * アカウント情報。
13     *
14     * ログイン済みの状態。
15     */
16    public const ACCOUNT = 'account';
17    /**
18     * 一時的な匿名セッション。
19     *
20     * 以下の画面でCSRFを有効にするために使う
21     *
22     * * ログイン画面
23     * * パスワード再発行
24     * * 新規登録
25     */
26    public const ANONYMOUS = 'anonymous';
27
28    #endregion
29}