Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php namespace Limoncello\Crypt\Package; |
||
46 | 1 | protected function getSettings(): array |
|
47 | { |
||
48 | return [ |
||
49 | /** @see http://php.net/manual/en/password.constants.php */ |
||
50 | 1 | static::KEY_ALGORITHM => PASSWORD_DEFAULT, |
|
51 | /** @see http://php.net/manual/en/function.password-hash.php */ |
||
52 | 1 | static::KEY_COST => 10, |
|
53 | ]; |
||
54 | } |
||
55 | } |
||
56 |