Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class User extends Model implements |
||
16 | AuthenticatableContract, |
||
17 | AuthorizableContract, |
||
18 | CanResetPasswordContract |
||
19 | { |
||
20 | use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail, Notifiable; |
||
21 | |||
22 | /** |
||
23 | * Send the password reset notification. |
||
24 | * |
||
25 | * @param string $token |
||
26 | * @return void |
||
27 | */ |
||
28 | public function sendPasswordResetNotification($token) |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * social accounts. |
||
38 | */ |
||
39 | 2 | public function linkedSocialAccounts() |
|
44 |