From c51b7d7104caead4a495ec8735be0a11b190d16b Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Mon, 10 Jun 2024 12:22:23 -0700 Subject: [PATCH] Inline variable --- app/Livewire/OauthClients.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/OauthClients.php b/app/Livewire/OauthClients.php index f621e8ed9c..02fc77848b 100644 --- a/app/Livewire/OauthClients.php +++ b/app/Livewire/OauthClients.php @@ -34,7 +34,7 @@ class OauthClients extends Component 'redirect' => 'required|url|max:255', ]); - $newClient = app(ClientRepository::class)->create( + app(ClientRepository::class)->create( auth()->user()->id, $this->name, $this->redirect,