Completed
Push — master ( 354bbd...8413c0 )
by John
03:53
created

Response::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace LunixREST\Response;
3
4
/**
5
 * Class Response
6
 * @package LunixREST\Response
7
 */
8
interface Response {
9
    /**
10
     * @return ResponseData
11
     */
12
    public function getResponseData(): ResponseData;
13
14
    /**
15
     * @return string
16
     */
17
    public function getAsString(): string;
18
19
}
20