2323use Symfony \Component \Process \Process ;
2424
2525use function Laravel \Prompts \confirm ;
26- use function Laravel \Prompts \error ;
2726use function Laravel \Prompts \intro ;
28- use function Laravel \Prompts \multiselect ;
2927use function Laravel \Prompts \select ;
3028use function Laravel \Prompts \suggest ;
3129use function Laravel \Prompts \text ;
@@ -681,14 +679,14 @@ protected function installSsg()
681679 }
682680
683681 $ this ->output ->write (PHP_EOL );
684- intro (" Installing the Static Site Generator addon... " );
682+ intro (' Installing the Static Site Generator addon... ' );
685683
686684 $ statusCode = (new Please ($ this ->output ))
687685 ->cwd ($ this ->absolutePath )
688- ->run (" install:ssg " );
686+ ->run (' install:ssg ' );
689687
690688 if ($ statusCode !== 0 ) {
691- throw new RuntimeException (" There was a problem installing the Static Site Generator addon! " );
689+ throw new RuntimeException (' There was a problem installing the Static Site Generator addon! ' );
692690 }
693691
694692 return $ this ;
@@ -830,8 +828,6 @@ protected function initializeGitRepository()
830828
831829 /**
832830 * Check if Git is installed.
833- *
834- * @return bool
835831 */
836832 protected function isGitInstalled (): bool
837833 {
@@ -844,8 +840,6 @@ protected function isGitInstalled(): bool
844840
845841 /**
846842 * Return the local machine's default Git branch if set or default to `main`.
847- *
848- * @return string
849843 */
850844 protected function defaultBranch (): string
851845 {
@@ -927,8 +921,6 @@ protected function pushToGithub()
927921
928922 /**
929923 * Check if GitHub's GH CLI tool is installed.
930- *
931- * @return bool
932924 */
933925 protected function isGhInstalled (): bool
934926 {
@@ -998,11 +990,11 @@ protected function askToEnableStatamicPro()
998990 $ this ->pro = confirm (
999991 label: 'Do you want to enable Statamic Pro? ' ,
1000992 default: true ,
1001- hint: " Statamic Pro is required for some features. Like Multi-site, the Git integration, and more. "
993+ hint: ' Statamic Pro is required for some features. Like Multi-site, the Git integration, and more. '
1002994 );
1003995
1004996 if ($ this ->pro ) {
1005- $ this ->output ->write (" Before your site goes live, you will need to purchase a license on <info>statamic.com</info>. " .PHP_EOL .PHP_EOL );
997+ $ this ->output ->write (' Before your site goes live, you will need to purchase a license on <info>statamic.com</info>. ' .PHP_EOL .PHP_EOL );
1006998 }
1007999
10081000 return $ this ;
@@ -1073,7 +1065,7 @@ protected function askToSpreadJoy()
10731065 }
10741066
10751067 $ response = select ('Would you like to spread the joy of Statamic by starring the repo? ' , [
1076- $ yes = " Absolutely " ,
1068+ $ yes = ' Absolutely ' ,
10771069 $ no = 'Maybe later ' ,
10781070 ], $ no );
10791071
0 commit comments