| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Response |
||
| 12 | { |
||
| 13 | public $success = true; |
||
| 14 | public $results = array(); |
||
| 15 | public $error; |
||
| 16 | |||
| 17 | public function __construct($results = array(), $success = true, $error = null) |
||
| 18 | { |
||
| 19 | $this->results = $results; |
||
| 20 | $this->error = $error; |
||
| 21 | $this->success = $success; |
||
| 22 | } |
||
| 23 | |||
| 24 | |||
| 25 | public function __toString() |
||
| 31 | } |
||
| 32 | } |