Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class RawDataResponse implements ResponseInterface |
||
12 | { |
||
13 | private $rawData = null; |
||
14 | |||
15 | 1 | public function __construct($response = null) |
|
16 | { |
||
17 | 1 | $this->rawData = $response; |
|
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return mixed|null |
||
22 | */ |
||
23 | 1 | public function getRawData() |
|
24 | { |
||
25 | 1 | return $this->rawData; |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param mixed|null $rawData |
||
30 | * |
||
31 | * @return RawDataResponse |
||
32 | */ |
||
33 | 1 | public function setRawData($rawData) |
|
37 | } |
||
38 | } |
||
39 |