Skip to content

Commit

Permalink
V0.3 (#20)
Browse files Browse the repository at this point in the history
* new_request_interfaces (#16)

* new_request_interfaces

* ProfileInterface & ProfileRequestInterface

* profile_controller (#19)
  • Loading branch information
Christian authored Nov 8, 2019
1 parent 8e4b431 commit 4d4b034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Http/Controllers/ProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function changePassword(ChangePasswordRequest $request, UpdateUser $user)
return redirect(route('mage.profile.change-password.index'))->with('status', 'updated');
}

public function update(UpdateRequest $request, UpdateUser $user)
public function update(UpdateProfileRequestInterface $request, UpdateProfileInterface $user)
{
$data = $request->validated();

Expand Down

0 comments on commit 4d4b034

Please sign in to comment.