| 1 | <?php |
||
| 13 | final class Wsse implements Authentication |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $username; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $password; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $username |
||
| 27 | * @param string $password |
||
| 28 | */ |
||
| 29 | public function __construct($username, $password) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function authenticate(RequestInterface $request) |
||
| 58 | } |
||
| 59 |