Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.1481 |
Changes | 0 |
1 | <?php |
||
20 | 1 | public function __construct($cost = 12) |
|
21 | { |
||
22 | 1 | if (!function_exists('password_hash')) { |
|
23 | throw new \RuntimeException( |
||
24 | 'In order to use this strategy please install the package "ircmaxell/password-compat" '. |
||
25 | 'or upgrade your php version to 5.5 or higher!' |
||
26 | ); |
||
27 | } |
||
28 | |||
29 | 1 | $this->cost = (int) $cost; |
|
30 | 1 | } |
|
31 | |||
48 |