Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | public function __construct(array $paymentTypes, string $detail = null, string $instance = null) |
||
20 | { |
||
21 | 2 | parent::__construct( |
|
22 | 'https://tools.ietf.org/html/rfc2616#section-10.4.3', |
||
23 | 2 | 402, |
|
24 | 2 | 'Payment Required', |
|
25 | 2 | $detail, |
|
26 | 2 | $instance |
|
27 | ); |
||
28 | |||
29 | $this->paymentTypes = $paymentTypes; |
||
30 | } |
||
40 |