| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function unlink(User $user, SocialLogin $social, ManageUserRequest $request, UserSocialRepository $userSocialRepository) |
||
|
1 ignored issue
–
show
|
|||
| 25 | { |
||
| 26 | $userSocialRepository->delete($user, $social); |
||
| 27 | |||
| 28 | return redirect()->back()->withFlashSuccess(trans('alerts.backend.users.social_deleted')); |
||
| 29 | } |
||
| 31 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.