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\Result;
6
7use PeServer\Core\Http\HttpResponse;
8
9/**
10 * アクションメソッドの結果操作。
11 */
12interface IActionResult
13{
14    #region function
15
16    /**
17     * 結果操作からHTTPレスポンスを生成。
18     */
19    public function createResponse(): HttpResponse;
20
21    #endregion
22}