Skip to content

Commit

Permalink
Merge pull request #36 from andrewdwallo/laravel10
Browse files Browse the repository at this point in the history
Laravel10
  • Loading branch information
andrewdwallo authored Feb 15, 2023
2 parents 3e6521a + 98e6e06 commit f52b53f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
"php": "^8.0",
"ext-json": "*",
"filament/filament": "^2.16",
"illuminate/console": "^8.6|^9.0",
"illuminate/contracts": "^8.6|^9.0",
"illuminate/support": "^8.6|^9.0",
"illuminate/console": "^8.6|^9.0|^10.0",
"illuminate/contracts": "^8.6|^9.0|^10.0",
"illuminate/support": "^8.6|^9.0|^10.0",
"jenssegers/agent": "^2.6",
"laravel/fortify": "^1.15",
"laravel/socialite": "^5.6"
},
"require-dev": {
"laravel/sanctum": "^3.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
Expand Down
4 changes: 3 additions & 1 deletion src/Http/Livewire/UpdateProfileInformationForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function mount(): void
* Update the user's profile information.
*
* @param UpdatesUserProfileInformation $updater
* @return Redirector|RedirectResponse
* @return RedirectResponse|Redirector
*/
public function updateProfileInformation(UpdatesUserProfileInformation $updater): Redirector|RedirectResponse
{
Expand All @@ -77,6 +77,8 @@ public function updateProfileInformation(UpdatesUserProfileInformation $updater)
->send();

$this->emit('refresh-navigation-menu');

return redirect()->back();
}

/**
Expand Down

0 comments on commit f52b53f

Please sign in to comment.