| 1 | <?php |
||
| 23 | class PasswordAuthentication { |
||
| 24 | |||
| 25 | use StringPasswordTrait; |
||
| 26 | use StringUsernameTrait; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor. |
||
| 30 | * |
||
| 31 | * @param string|null $username The username. |
||
| 32 | * @param string|null $password The password. |
||
| 33 | */ |
||
| 34 | public function __construct(?string $username, ?string $password) { |
||
| 38 | } |
||
| 39 |