| 1 | <?php |
||
| 19 | class WsseAuth |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $Username; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $Password; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Constructor class. |
||
| 33 | * |
||
| 34 | * @param string $username The username used in wsse security. |
||
| 35 | * @param string $password The password used in wsse security. |
||
| 36 | */ |
||
| 37 | 3 | public function __construct($username, $password) |
|
| 42 | } |
||
| 43 |