| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function __construct(VippsInterface $vipps, $subscription_key, $client_secret) |
||
| 36 | { |
||
| 37 | parent::__construct($vipps, $subscription_key); |
||
| 38 | // Authorization module requires client_id to be set on "client_id" |
||
| 39 | // header. |
||
| 40 | $this->headers['client_id'] = $this->app->getClient()->getClientId(); |
||
| 41 | $this->headers['client_secret'] = $client_secret; |
||
| 42 | } |
||
| 43 | |||
| 62 |