| 1 | <?php |
||
| 9 | class PasswordLengthValidator implements Validator |
||
| 10 | { |
||
| 11 | /** @var int $length */ |
||
| 12 | private $length; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * PasswordLengthValidator constructor. |
||
| 16 | * |
||
| 17 | * @param int $length The minimum length the password must be |
||
| 18 | */ |
||
| 19 | public function __construct(int $length = 8) |
||
| 23 | |||
| 24 | /** {@inheritdoc} */ |
||
| 25 | public function validate(string $password): bool |
||
| 33 | } |
||
| 34 |