Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class DatabaseUserProviderWithPasswordUpdate extends DatabaseUserProvider implements ProviderWithPasswordUpdate |
||
9 | { |
||
10 | 2 | public function __construct(DatabaseUserProvider $provider) |
|
11 | { |
||
12 | 2 | parent::__construct($provider->conn, $provider->hasher, $provider->table); |
|
13 | 2 | } |
|
14 | |||
15 | 2 | public function updatePassword(Authenticatable $user, $plainPassword) |
|
20 | 2 | } |
|
21 | } |
||
22 |