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

Response

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getResponseData() 0 1 ?
getAsString() 0 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