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\App\Models;
6
7/**
8 * 監査用ユーザー情報取得。
9 */
10interface IAuditUserInfo
11{
12    #region function
13
14    /**
15     * ユーザーID取得。
16     *
17     * @return string
18     */
19    public function getUserId(): string;
20
21    #endregion
22}