Skip to content

Commit fb22f2d

Browse files
authored
[4.x] Fix PHPDoc for UpdateUserProfileInformation::update (#1424)
The `$input` parameter is typed as an `array<string, string>`, but `$input['photo']` is an `UploadedFile` and not a `string`.
1 parent 108e2ce commit fb22f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/app/Actions/Fortify/UpdateUserProfileInformation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
1313
/**
1414
* Validate and update the given user's profile information.
1515
*
16-
* @param array<string, string> $input
16+
* @param array<string, mixed> $input
1717
*/
1818
public function update(User $user, array $input): void
1919
{

0 commit comments

Comments
 (0)