Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ZxcvbnDecorator extends Zxcvbn |
||
9 | { |
||
10 | /** |
||
11 | * @var Zxcvbn |
||
12 | */ |
||
13 | private $inner; |
||
14 | |||
15 | 2 | public function __construct(Zxcvbn $inner) |
|
16 | { |
||
17 | 2 | $this->inner = $inner; |
|
18 | |||
19 | 2 | parent::__construct(); |
|
20 | 2 | } |
|
21 | |||
22 | 1 | public function addMatcher(string $className) |
|
25 | } |
||
26 | |||
27 | 1 | public function passwordStrength($password, array $userInputs = []) |
|
33 |