From b7afbd6a6a93c538e870271c2e38e6aecf3f04f3 Mon Sep 17 00:00:00 2001 From: Gennaro Landolfi Date: Thu, 18 Jul 2024 06:28:24 +0200 Subject: [PATCH] Fixed missing import of select() function from Laravel Prompts (#98) --- src/Commands/PublishCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Commands/PublishCommand.php b/src/Commands/PublishCommand.php index d8eb4b88..8883469a 100644 --- a/src/Commands/PublishCommand.php +++ b/src/Commands/PublishCommand.php @@ -7,6 +7,7 @@ use Illuminate\Support\Str; use Native\Electron\Concerns\LocatesPhpBinary; use Native\Electron\Facades\Updater; +use function Laravel\Prompts\select; class PublishCommand extends Command {