1 | <?php namespace Ntholenaar\MultiSafepayClient\Http\Plugin; |
||
5 | final class Authentication implements \Http\Message\Authentication |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $apiKey; |
||
11 | |||
12 | /** |
||
13 | * @param $apiKey |
||
14 | */ |
||
15 | public function __construct($apiKey) |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function authenticate(RequestInterface $request) |
||
27 | } |
||
28 |