Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | abstract class ApiResponseAbstract implements ApiResponseInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var mixed |
||
14 | */ |
||
15 | protected $data; |
||
16 | |||
17 | /** |
||
18 | * Returns response value |
||
19 | * |
||
20 | * @return mixed |
||
21 | */ |
||
22 | public function getData() |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Sets response data |
||
29 | * |
||
30 | * @param $data |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | protected function setData($data) |
||
39 |