diff --git a/src/Http/Livewire/CreateTeamForm.php b/src/Http/Livewire/CreateTeamForm.php index 984f9a9d4..f4750ff2c 100644 --- a/src/Http/Livewire/CreateTeamForm.php +++ b/src/Http/Livewire/CreateTeamForm.php @@ -22,7 +22,7 @@ class CreateTeamForm extends Component * Create a new team. * * @param \Laravel\Jetstream\Contracts\CreatesTeams $creator - * @return void + * @return mixed */ public function createTeam(CreatesTeams $creator) { diff --git a/src/Http/Livewire/TeamMemberManager.php b/src/Http/Livewire/TeamMemberManager.php index f2d8fcdc9..fcb397f9d 100644 --- a/src/Http/Livewire/TeamMemberManager.php +++ b/src/Http/Livewire/TeamMemberManager.php @@ -183,7 +183,7 @@ public function stopManagingRole() * Remove the currently authenticated user from the team. * * @param \Laravel\Jetstream\Contracts\RemovesTeamMembers $remover - * @return void + * @return \Illuminate\Http\RedirectResponse */ public function leaveTeam(RemovesTeamMembers $remover) { diff --git a/src/Http/Livewire/UpdateProfileInformationForm.php b/src/Http/Livewire/UpdateProfileInformationForm.php index 26462c1ec..033d0dbeb 100644 --- a/src/Http/Livewire/UpdateProfileInformationForm.php +++ b/src/Http/Livewire/UpdateProfileInformationForm.php @@ -50,7 +50,7 @@ public function mount() * Update the user's profile information. * * @param \Laravel\Fortify\Contracts\UpdatesUserProfileInformation $updater - * @return void + * @return \Illuminate\Http\RedirectResponse|null */ public function updateProfileInformation(UpdatesUserProfileInformation $updater) {