| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function __construct( |
||
| 37 | VippsInterface $vipps, |
||
| 38 | $subscription_key, |
||
| 39 | $order_id, |
||
| 40 | RequestCancelPayment $requestObject |
||
| 41 | ) { |
||
| 42 | parent::__construct($vipps, $subscription_key); |
||
| 43 | $this->body = $this |
||
| 44 | ->getSerializer() |
||
| 45 | ->serialize( |
||
| 46 | $requestObject, |
||
| 47 | 'json' |
||
| 48 | ); |
||
| 49 | $this->id = $order_id; |
||
| 50 | } |
||
| 51 | |||
| 71 |