1 | <?php |
||
5 | class SetUsernameAndPassword implements OptionInterface |
||
6 | { |
||
7 | /** @var string */ |
||
8 | private $password; |
||
9 | |||
10 | /** @var string */ |
||
11 | private $username; |
||
12 | |||
13 | /** |
||
14 | * @param string $username |
||
15 | * @param string $password |
||
16 | */ |
||
17 | public function __construct($username, $password) |
||
22 | |||
23 | /** |
||
24 | * @return int |
||
25 | */ |
||
26 | public function identifier() |
||
30 | |||
31 | /** |
||
32 | * @return mixed |
||
33 | */ |
||
34 | public function value() |
||
38 | } |