Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct(RawResponse $raw, string $orderURL) { |
||
19 | |||
20 | // Dirty fix: Header of response "Get" does not contain an order url, instead of response "Create" |
||
21 | // Is needed on production server, not on staging server - tested: 12.04.2021 |
||
22 | $raw->header[] = 'Location: ' . $orderURL; |
||
23 | |||
24 | parent::__construct($raw); |
||
25 | } |
||
26 | } |