Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct($cost = 12) |
||
21 | { |
||
22 | 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 | $this->cost = (int) $cost; |
||
30 | } |
||
31 | |||
48 |