Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Request extends \RuntimeException |
||
8 | { |
||
9 | /** @var mixed response data */ |
||
10 | private $responseData; |
||
11 | |||
12 | /** |
||
13 | * @param string $message |
||
14 | * @param integer $code |
||
15 | * @param \Exception $previousException |
||
16 | * @param mixed $responseData |
||
17 | * @return self |
||
18 | */ |
||
19 | public function __construct( |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Response data |
||
32 | * @return mixed |
||
33 | */ |
||
34 | public function getResponseData() |
||
39 |