| Total Complexity | 7 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class Response |
||
| 6 | { |
||
| 7 | private $data; |
||
| 8 | |||
| 9 | public function __construct($data) |
||
| 12 | } |
||
| 13 | |||
| 14 | public function getControl() |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getOperationNumber() |
||
| 20 | { |
||
| 21 | return $this->data['operation_number']; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getEmail() |
||
| 25 | { |
||
| 26 | return $this->data['email']; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getOperationAmount() |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getOperationDateTime() |
||
| 35 | { |
||
| 36 | return $this->data['operation_datetime']; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getOperationStatus() |
||
| 42 | } |
||
| 43 | |||
| 44 | } |