Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 6 | public function init() |
|
37 | { |
||
38 | 6 | $this->shopOrderId = $this->body['shop_orderid']; |
|
39 | 6 | $this->amount = (float)$this->body['amount']; |
|
40 | 6 | $this->currency = (int)$this->body['currency']; |
|
41 | 6 | $this->language = $this->body['language']; |
|
42 | 6 | $this->embeddedWindow = (int)$this->body['embedded_window'] === 1; |
|
43 | 6 | } |
|
44 | |||
85 |