| Total Complexity | 2 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class UpdateUserProfileInformation implements UpdatesUserProfileInformation |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Validate and update the given user's profile information. |
||
| 13 | * |
||
| 14 | * @param mixed $user |
||
| 15 | * @param array $input |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | public function update($user, array $input) |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Update the given verified user's profile information. |
||
| 31 | * |
||
| 32 | * @param mixed $user |
||
| 33 | * @param array $input |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | protected function updateVerifiedUser($user, array $input) |
||
| 47 |