From 7582d92418ec1dad561df0b68726b431fee5361d Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Thu, 4 Feb 2021 21:08:46 +0000 Subject: [PATCH] Apply fixes from StyleCI --- .../Controllers/Inertia/UpdateUserProfilePhotoController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Http/Controllers/Inertia/UpdateUserProfilePhotoController.php b/src/Http/Controllers/Inertia/UpdateUserProfilePhotoController.php index 414ba779..fa4491e6 100644 --- a/src/Http/Controllers/Inertia/UpdateUserProfilePhotoController.php +++ b/src/Http/Controllers/Inertia/UpdateUserProfilePhotoController.php @@ -23,7 +23,7 @@ public function __invoke(Request $request) if (is_callable([$user, 'setProfilePhotoFromUrl']) && ! is_null($account->avatar_path)) { $user->setProfilePhotoFromUrl($account->avatar_path); } - + return back(303); } -} \ No newline at end of file +}