| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanedev\Stripe\Exceptions\OAuth; |
||
| 18 | 8 | public function __construct( |
|
| 19 | $code, $message, $httpStatus = null, $httpBody = null, $jsonBody = null, $httpHeaders = null |
||
| 20 | ) { |
||
| 21 | 8 | parent::__construct($message, $httpStatus, $httpBody, $jsonBody, $httpHeaders); |
|
| 22 | |||
| 23 | 8 | $this->code = $code; |
|
| 24 | 8 | } |
|
| 25 | |||
| 36 |