1 | <?php |
||
5 | class Criteria { |
||
6 | |||
7 | protected $dictionary; |
||
8 | protected $occurrence; |
||
9 | |||
10 | 12 | public function __construct($dictionary, $occurrence) |
|
15 | |||
16 | 11 | public function build() |
|
20 | |||
21 | /** |
||
22 | * Détermine si le mot de passe vérifie le critère |
||
23 | * |
||
24 | * @param string $password |
||
25 | * @return boolean |
||
26 | */ |
||
27 | 1 | public function passes($password) |
|
39 | } |
||
40 |