| 1 | <?php |
||
| 9 | final class AuthPlainCredentialsRequest implements RequestInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $username; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $password; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $username |
||
| 23 | * @param string $password |
||
| 24 | */ |
||
| 25 | 3 | public function __construct(string $username, string $password) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * @param ConnectionInterface $connection |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | 3 | public function execute(ConnectionInterface $connection): void |
|
| 43 | } |
||
| 44 |