Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
39 | 1 | protected function getSettings(): array |
|
40 | { |
||
41 | return [ |
||
42 | /** @see http://php.net/manual/en/password.constants.php */ |
||
43 | 1 | static::KEY_ALGORITHM => PASSWORD_DEFAULT, |
|
44 | /** @see http://php.net/manual/en/function.password-hash.php */ |
||
45 | 1 | static::KEY_COST => 10, |
|
46 | ]; |
||
47 | } |
||
48 | } |
||
49 |