From c888ac7ec2509ea6bec84cf661a2ed6c85c6a369 Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Wed, 22 May 2024 16:00:25 +0200 Subject: [PATCH] Fixed typo in self hosting command --- app/Console/Commands/SelfHost/SelfHostGenerateKeys.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/SelfHost/SelfHostGenerateKeys.php b/app/Console/Commands/SelfHost/SelfHostGenerateKeys.php index cec38ee2..89587f7a 100644 --- a/app/Console/Commands/SelfHost/SelfHostGenerateKeys.php +++ b/app/Console/Commands/SelfHost/SelfHostGenerateKeys.php @@ -41,8 +41,8 @@ public function handle(): int if ($format === 'env') { $this->line('APP_KEY="'.$appKey.'"'); - $this->line('PASSPORT_PRIVATE_KEY="'.$publicKey.'"'); - $this->line('PASSPORT_PUBLIC_KEY="'.$privateKey.'"'); + $this->line('PASSPORT_PRIVATE_KEY="'.$privateKey.'"'); + $this->line('PASSPORT_PUBLIC_KEY="'.$publicKey.'"'); } elseif ($format === 'yaml') { $this->line('APP_KEY: "'.$appKey.'"'); $this->line("PASSPORT_PRIVATE_KEY: |\n ".Str::replace("\n", "\n ", $privateKey));