From 40d5bcfb63c1eb003e5d06122443b1519175801a Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Mon, 18 Nov 2024 01:24:09 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/NewCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index c4f2782..84f9a81 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -349,7 +349,7 @@ protected function configureDefaultDatabaseConnection(string $directory, string } /** - * Configure Composer's Script + * Configure Composer's Script. * * @param string $directory * @return void @@ -358,7 +358,7 @@ protected function configureComposerScript(string $directory): void { $this->composer->modify(function (array $content) { if (windows_os()) { - $content['scripts']['dev'] = "npx concurrently -c \"#93c5fd,#c4b5fd,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"npm run dev\" --names=server,queue,vite"; + $content['scripts']['dev'] = 'npx concurrently -c "#93c5fd,#c4b5fd,#fdba74" "php artisan serve" "php artisan queue:listen --tries=1" "npm run dev" --names=server,queue,vite'; } return $content;