Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function __construct(string $password, string $id = '') |
||
14 | { |
||
15 | if (strlen($password) < self::MIN_LENGTH) |
||
16 | { |
||
17 | throw new Iae('Passwords must be strings at least ' |
||
18 | . self::MIN_LENGTH . ' characters long.'); |
||
19 | } |
||
20 | |||
21 | $this->password = $password; |
||
22 | $this->id = $id; |
||
23 | } |
||
24 | |||
35 |